#region 延时方法非阻塞, thread sleep会阻塞导致界面无法显示
public static void Delay(int mm)
{
DateTime current = DateTime.Now;
while (current.AddMilliseconds(mm) > DateTime.Now)
{
Application.DoEvents();
}
return;
}
#endregion
延时方法非阻塞, thread sleep会阻塞导致界面无法显示
最新推荐文章于 2022-06-30 22:28:56 发布