Wednesday, 9 March 2016

Notification in C#

the following control will be added (notiyicon) to the application:



 Add the following code to the form:

                             notifyIcon1.Text = "Notification";
                            notifyIcon1.Visible = true;
                            notifyIcon1.BalloonTipTitle = "You Have  Application Pending ";
                            notifyIcon1.BalloonTipText = "Click Here to see details";

                            notifyIcon1.ShowBalloonTip(100);

No comments:

Post a Comment