this.WindowState = FormWindowState.Minimized;
notifyIcon1.BalloonTipIcon = ToolTipIcon.Info;
notifyIcon1.BalloonTipTitle = "Notify Icon Test Application";
notifyIcon1.BalloonTipText = "You have just minimized the application." + Environment.NewLine + "Right-click on the icon for more options.";
notifyIcon1.ShowBalloonTip(5000);
I'm using this code in a button in order to minimize the form and pop up a notification. The form is minimizing but no notification is shown. Any help?