├── .gitattributes ├── .gitignore ├── 1.0 └── WPFNotification │ ├── WPFNotification.sln │ ├── WPFNotification.suo │ ├── WPFNotification.v12.suo │ ├── WPFNotification │ ├── App.config │ ├── Assets │ │ ├── CloseButton.xaml │ │ ├── NotificationItem.xaml │ │ ├── NotificationItem.xaml.cs │ │ └── NotificationUI.xaml │ ├── Converters │ │ ├── BaseConverter.cs │ │ └── EmptyStringConverter.cs │ ├── Core │ │ ├── Configuration │ │ │ ├── NotificationConfiguration.cs │ │ │ └── NotificationFlowDirection.cs │ │ ├── Interactivity │ │ │ ├── FadeBehavior.cs │ │ │ └── SlideBehavior.cs │ │ └── NotifyBox.cs │ ├── Model │ │ └── Notification.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ └── Images │ │ │ ├── notification-icon.png │ │ │ ├── notificationPackageIcon-64x64.png │ │ │ └── toast_Icon64x64.png │ ├── Services │ │ ├── INotificationDialogService.cs │ │ └── NotificationDialogService.cs │ ├── WPFNotification.csproj │ ├── WPFNotification.csproj.user │ └── packages.config │ ├── WPFNotificationDemo │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── MailNotificationUI.xaml │ │ ├── NotificationItem.xaml │ │ └── NotificationItem.xaml.cs │ ├── Core │ │ └── Constants.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Model │ │ └── MailNotification.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── images │ │ │ ├── Warning-Message.png │ │ │ ├── newMail.png │ │ │ ├── toast_Icon.png │ │ │ └── warning.png │ ├── ViewModel │ │ ├── MainViewModel.cs │ │ └── ViewModelLocator.cs │ ├── WPFNotificationDemo.csproj │ ├── WPFNotificationDemo.csproj.user │ ├── app.config │ └── packages.config │ └── WPFNotificationNuGet.Packager │ ├── NuGet.config │ ├── NuGet.exe │ ├── NuGet.log │ ├── NuGetPackage.ps1 │ ├── NuGetSetup.ps1 │ ├── Package.nuspec │ ├── Properties │ └── AssemblyInfo.cs │ ├── WPFNotificationNuGet.Packager.csproj │ ├── WPFNotificationNuGet.Packager.csproj.vspscc │ ├── content │ ├── App.xaml.install.xdt │ └── App.xaml.uninstall.xdt │ ├── lib │ └── WPFNotification.dll │ └── tools │ ├── init.ps1 │ ├── install.ps1 │ └── uninstall.ps1 ├── LICENSE ├── README.md └── images ├── Default_Notification.png ├── Default_Notification_with_newImage.png ├── MailNotification.png ├── MailNotification_intro.png ├── notificationLeftBottom.png ├── notificationLeftUp.png └── notificationٌRightUp.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/.gitignore -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification.sln -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification.suo -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification.v12.suo -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/App.config -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Assets/CloseButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Assets/CloseButton.xaml -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Assets/NotificationItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Assets/NotificationItem.xaml -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Assets/NotificationItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Assets/NotificationItem.xaml.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Assets/NotificationUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Assets/NotificationUI.xaml -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Converters/BaseConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Converters/BaseConverter.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Converters/EmptyStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Converters/EmptyStringConverter.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Core/Configuration/NotificationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Core/Configuration/NotificationConfiguration.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Core/Configuration/NotificationFlowDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Core/Configuration/NotificationFlowDirection.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Core/Interactivity/FadeBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Core/Interactivity/FadeBehavior.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Core/Interactivity/SlideBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Core/Interactivity/SlideBehavior.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Core/NotifyBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Core/NotifyBox.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Model/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Model/Notification.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Properties/Resources.resx -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Properties/Settings.settings -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Resources/Images/notification-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Resources/Images/notification-icon.png -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Resources/Images/notificationPackageIcon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Resources/Images/notificationPackageIcon-64x64.png -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Resources/Images/toast_Icon64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Resources/Images/toast_Icon64x64.png -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Services/INotificationDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Services/INotificationDialogService.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/Services/NotificationDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/Services/NotificationDialogService.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/WPFNotification.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/WPFNotification.csproj -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/WPFNotification.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/WPFNotification.csproj.user -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotification/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotification/packages.config -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/App.xaml -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/App.xaml.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/Assets/MailNotificationUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/Assets/MailNotificationUI.xaml -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/Assets/NotificationItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/Assets/NotificationItem.xaml -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/Assets/NotificationItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/Assets/NotificationItem.xaml.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/Core/Constants.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/MainWindow.xaml -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/Model/MailNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/Model/MailNotification.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/Resources/images/Warning-Message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/Resources/images/Warning-Message.png -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/Resources/images/newMail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/Resources/images/newMail.png -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/Resources/images/toast_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/Resources/images/toast_Icon.png -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/Resources/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/Resources/images/warning.png -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/ViewModel/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/ViewModel/ViewModelLocator.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/WPFNotificationDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/WPFNotificationDemo.csproj -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/WPFNotificationDemo.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/WPFNotificationDemo.csproj.user -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/app.config -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationDemo/packages.config -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/NuGet.config -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/NuGet.exe -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/NuGet.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/NuGet.log -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/NuGetPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/NuGetPackage.ps1 -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/NuGetSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/NuGetSetup.ps1 -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/Package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/Package.nuspec -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/WPFNotificationNuGet.Packager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/WPFNotificationNuGet.Packager.csproj -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/WPFNotificationNuGet.Packager.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/WPFNotificationNuGet.Packager.csproj.vspscc -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/content/App.xaml.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/content/App.xaml.install.xdt -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/content/App.xaml.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/content/App.xaml.uninstall.xdt -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/lib/WPFNotification.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/lib/WPFNotification.dll -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/tools/init.ps1 -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/tools/install.ps1 -------------------------------------------------------------------------------- /1.0/WPFNotification/WPFNotificationNuGet.Packager/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/1.0/WPFNotification/WPFNotificationNuGet.Packager/tools/uninstall.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/README.md -------------------------------------------------------------------------------- /images/Default_Notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/images/Default_Notification.png -------------------------------------------------------------------------------- /images/Default_Notification_with_newImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/images/Default_Notification_with_newImage.png -------------------------------------------------------------------------------- /images/MailNotification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/images/MailNotification.png -------------------------------------------------------------------------------- /images/MailNotification_intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/images/MailNotification_intro.png -------------------------------------------------------------------------------- /images/notificationLeftBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/images/notificationLeftBottom.png -------------------------------------------------------------------------------- /images/notificationLeftUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/images/notificationLeftUp.png -------------------------------------------------------------------------------- /images/notificationٌRightUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-magdy/WPFToastNotification/HEAD/images/notificationٌRightUp.png --------------------------------------------------------------------------------