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
Have you tried the following snippet? I managed to find it whilst doing a quick google search:
private void TrayNotifyIcon_BalloonClick(object sender, EventArgs e)
{
//Perform Action
}
Obviously you'll need to make sure you specify the correct name in the method signature for your own application.
I think this was written in an older version of the .Net Framework and there's probably a newly named method for it.
Source: Build a C# Notification System