I use the ShowBalloonTip
method of a TrayIcon
class to display a balloon tip. Is there a way to handle a click over this balloon?
When I cl
I think you mean NotifyIcon . Use following pattern...
NotifyIcon notifyIcon = null;
public Form1()
{
InitializeComponent();
notifyIcon = new NotifyIcon();
// Initializing notifyIcon here...
notifyIcon.BalloonTipClicked += new EventHandler(notifyIcon_BalloonTipClicked);
}
void notifyIcon_BalloonTipClicked(object sender, EventArgs e)
{
// Operation you want...
}
I hope it feed your needs...