Windows Forms: How to create a Notification Popup in C#
By FoxLearn 6/21/2017 9:41:14 PM 14.1K
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 save files using SaveFileDialog in C#
- How to make an Alarm clock with sound in C#
- How to Display Images in DataGridView in C#
- How to Print DataGridView with Header & Footer with Landscape in C#
- How to Create a custom Progress Bar with Percentage in C#
- How to read an image file in C#
- How to use BackgroundWorker in C#
- How to protect .NET code from reverse engineering
Categories
Popular Posts
Flat Able Admin Dashboard Template
11/18/2024
Regal Admin Dashboard Template
11/18/2024
Plus Admin Dashboard Template
11/18/2024
Admin Tailwind CSS Admin Dashboard Template
11/18/2024