├── .gitignore ├── DemoApp ├── DemoApp.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── Resources │ └── 157_GetPermission_48x48_72.png ├── LICENSE ├── NotificationWindow.sln ├── Nuget ├── Build.ps1 └── specs.nuspec ├── README.md ├── Screenshots ├── example1.png └── example2.png ├── Tulpep.NotificationWindow ├── Grip.png ├── Icon.ico ├── PopupNotifier.cs ├── PopupNotifierForm.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── Tulpep.NotificationWindow.csproj └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/.gitignore -------------------------------------------------------------------------------- /DemoApp/DemoApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/DemoApp/DemoApp.csproj -------------------------------------------------------------------------------- /DemoApp/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/DemoApp/Form1.Designer.cs -------------------------------------------------------------------------------- /DemoApp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/DemoApp/Form1.cs -------------------------------------------------------------------------------- /DemoApp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/DemoApp/Form1.resx -------------------------------------------------------------------------------- /DemoApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/DemoApp/Program.cs -------------------------------------------------------------------------------- /DemoApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/DemoApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DemoApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/DemoApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DemoApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/DemoApp/Properties/Resources.resx -------------------------------------------------------------------------------- /DemoApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/DemoApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DemoApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/DemoApp/Properties/Settings.settings -------------------------------------------------------------------------------- /DemoApp/Resources/157_GetPermission_48x48_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/DemoApp/Resources/157_GetPermission_48x48_72.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/LICENSE -------------------------------------------------------------------------------- /NotificationWindow.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/NotificationWindow.sln -------------------------------------------------------------------------------- /Nuget/Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/Nuget/Build.ps1 -------------------------------------------------------------------------------- /Nuget/specs.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/Nuget/specs.nuspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/Screenshots/example1.png -------------------------------------------------------------------------------- /Screenshots/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/Screenshots/example2.png -------------------------------------------------------------------------------- /Tulpep.NotificationWindow/Grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/Tulpep.NotificationWindow/Grip.png -------------------------------------------------------------------------------- /Tulpep.NotificationWindow/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/Tulpep.NotificationWindow/Icon.ico -------------------------------------------------------------------------------- /Tulpep.NotificationWindow/PopupNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/Tulpep.NotificationWindow/PopupNotifier.cs -------------------------------------------------------------------------------- /Tulpep.NotificationWindow/PopupNotifierForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/Tulpep.NotificationWindow/PopupNotifierForm.cs -------------------------------------------------------------------------------- /Tulpep.NotificationWindow/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/Tulpep.NotificationWindow/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tulpep.NotificationWindow/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/Tulpep.NotificationWindow/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Tulpep.NotificationWindow/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/Tulpep.NotificationWindow/Properties/Resources.resx -------------------------------------------------------------------------------- /Tulpep.NotificationWindow/Tulpep.NotificationWindow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/Tulpep.NotificationWindow/Tulpep.NotificationWindow.csproj -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tulpep/Notification-Popup-Window/HEAD/appveyor.yml --------------------------------------------------------------------------------