在要停止的地方用:Thread.Sleep(3000);PS:UI也是一个线程。
别在UI线程上使用Thread.Sleep这样会使你的应用程序失去响应,你可以使用Timer什么的.
using System.Threading;Thread.sleep(3000);
那就用Timer控件把
都是用的thread,没有其他方法