日期:2014-05-18 浏览次数:21002 次
//using System.Threading; Thread t = new Thread(o => Thread.Sleep(5000)); t.Start(this); while (t.IsAlive) { Application.DoEvents(); } MessageBox.Show("ok");