How to create a Notification Popup in C#

By FoxLearn 12/10/2024 2:31:32 PM   14.34K
Creating a notification popup window in C# using the Tulpep.NotificationWindow library is a straightforward process.

This library provides a simple way to display toast notifications in desktop applications.

How to create a Notification Popup in C#?

Open Visual Studio, then 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

Right click on your project select Manage NuGet Packages -> Search for Tulpep.NotificationWindow and install it.

notification window c#

Design a simple form as shown below.

c# notification window

Add code to handle your button click event as shown below.

private void button1_Click(object sender, EventArgs e)
{
    // Create a new PopupNotifier instance
    PopupNotifier popup = new PopupNotifier();
    // Optional: Set the icon (e.g., an application icon)
    popup.Image = Properties.Resources.info;
    // Set the title of the notification
    popup.TitleText = "FoxLearn";
    popup.ContentText = "Thank you for watching this video !";
    popup.Popup();//Show
}

VIDEO TUTORIAL