Articles → .NET → Desktop Notification In C#
Desktop Notification In C#
Adding A Reference
- Go to solution explorer.
- Right-click on References → Manage NuGet Packages…
- Search for tulpep and install ‘Notification Popup Window’ component
Click to Enlarge
Code
PopupNotifier notifier = new PopupNotifier();
notifier.TitleText = "Welcome message";
notifier.ContentText = "Welcome to notification message";
notifier.Popup();
Output
Click to Enlarge