因此,该程序首次显示一个气球提示。如果单击它,它将消失并继续执行程序。如果没有点击,气球提示会淡出,等待五分钟,然后很快就会闪烁,冻结程序。有什么原因吗?
for (; ; )
{
Norm.ShowBalloonTip(10000);
while (DateTime.Now.Subtract(start).Seconds < 10)
{
Application.DoEvents();
if (loopVariable)
for3 = true;
if (for3) goto label4;
}
while (DateTime.Now.Subtract(start).Minutes < 5)
{
Application.DoEvents();
}
}