I'm trying to create a balloontip (windows popup) and want to know if the user clicks on it. But I can't catch the click.
I've already tried a few things but it won't work.
notification.ShowBalloonTip(5000);
notification.BalloonTipClicked += new System.EventHandler(this.OpenWindow);
notification.Click += new System.EventHandler(this.OpenWindow);
notification.DoubleClick += new System.EventHandler(this.OpenWindow);
The notification
is a NotifyIcon object. I hope someone here can help me with this.