Windows Forms: How to create a Notification Popup in C#
By FoxLearn 6/21/2017 9:41:14 PM 14.16K
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 Print Text in a Windows Form Application Using C#
- How to fill ComboBox and DataGridView automatically in C#
- How to Read text file and Sort list in C#
- How to pass ListView row data into another Form in C#
- How to read and write to text file in C#
- How to make a Countdown Timer in C#
- How to Display selected Row from DataGridView to TextBox in C#
- How to Get all Forms and Open Form with Form Name in C#
Categories
Popular Posts
Material Lite Admin Template
11/14/2024
Freedash bootstrap lite
11/13/2024
RuangAdmin Template
11/17/2024
Responsive Animated Login Form
11/11/2024