Windows Forms: How to create a Notification Popup in C#

Creating Notification Popup Window in C# using Tulpep.NotificationWindow library

Step 1Click 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

c# notificationStep 2: Right click on your project select Manage NuGet Packages -> Search Tulpep.NotificationWindow -> Install

notification window c#Step 3: Design your form as below

c# notification window

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