Windows Forms: How to create a Notification Popup in C#
By FoxLearn 6/21/2017 9:41:14 PM 13.95K
Creating Notification Popup Window in C# using Tulpep.NotificationWindow library
Step 1: Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "NotificationPopup" and then click OK
Step 2: Right click on your project select Manage NuGet Packages -> Search Tulpep.NotificationWindow -> Install
Step 3: Design your form as below
Step 4: Add code to handle your button click event as below
private void button1_Click(object sender, EventArgs e) { PopupNotifier popup = new PopupNotifier(); popup.Image = Properties.Resources.info; popup.TitleText = "FoxLearn"; popup.ContentText = "Thank you for watching this video !"; popup.Popup();//Show }
VIDEO TUTORIALS
- How to Send and Receive email in Microsoft Outlook using C#
- How to Print Windows Form in C#
- How to Use Form Load and Button click Event in C#
- How to use Advanced Filter DataGridView in C#
- How to use TagListControl in C#
- How to use Error Provider in C#
- How to Drag and Drop controls in C#
- How to Create a Random Password Generator in C#
Categories
Popular Posts
How to Download Chromedriver for Selenium
08/29/2024
C# Tutorial
07/20/2024
How to Download Microsoft SQL Server
06/22/2024