public static void Delay(int ms) { int start = System.Environment.TickCount; while (System.Environment.TickCount - start < ms) { //调用此方法将导致当前线程暂停,但处理所有等待窗口消息。 Application.DoEvents(); } }
本文共 312 字,大约阅读时间需要 1 分钟。
public static void Delay(int ms) { int start = System.Environment.TickCount; while (System.Environment.TickCount - start < ms) { //调用此方法将导致当前线程暂停,但处理所有等待窗口消息。 Application.DoEvents(); } }
转载于:https://www.cnblogs.com/liwb1987/p/4606657.html