我需要以下 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);
}
(您可能意识到,"规范"是指通知图标的名称)
正如西蒙·怀特黑德(Simon Whitehead)所建议的那样,使用标志,我已经能够解决问题。 通过使用以下代码,现在一切正常!
bool for3 = false;
for (; ; )
{
Norm.ShowBalloonTip(10000);
System.Threading.Thread.Sleep(10000);
Application.DoEvents();
if (loopVariable)
for3 = true;
if (for3) break;
System.Threading.Thread.Sleep(60000);
}
private static bool loopVariable = false;
void Norm_BalloonTipClicked(object sender, EventArgs e)
{
loopVariable = true;
}
感谢西蒙·怀特黑德的所有帮助! 非常感谢。