RT
2 回答
动漫人物
TA贡献1815条经验 获得超10个赞
using System;
using System.Windows.Forms;
using System.Threading;
namespace MyProject
{
public class Util
{
//延时函数
public static void Delay(int DelayTime = 100)
{
int time = Environment.TickCount;
while (true)
{
if (Environment.TickCount - time >= DelayTime)
{
break;
}
Application.DoEvents();
Thread.Sleep(10);
}
}
}
}
慕的地6264312
TA贡献1817条经验 获得超6个赞
- 2 回答
- 0 关注
- 1227 浏览
添加回答
举报
0/150
提交
取消