バルーンチップがクリックされるまで繰り返すには、次の while ループが必要です。これどうやってするの?
while(/*Here, I want the loop to end when the Norm.BalloonTipClicked occurs*/)
{
Norm.ShowBalloonTip(10000);
System.Threading.Thread.Sleep(10000);
`enter code here`
System.Threading.Thread.Sleep(60000);
}
(お気づきかもしれませんが、「Norm」は通知アイコンの名前を指します)