摘要: Process myProcess = new Process(); myProcess.StartInfo.FileName = exeName; myProcess.Start(); while (!myProcess.HasExited) { this.WindowState = FormWindowState.Minimized; System.Threading.Thread.Sleep(1000); } this.WindowState = FormWindowState.Normal; myProcess.Close(); 阅读全文
posted @ 2013-08-06 09:41 何卫 阅读(284) 评论(0) 推荐(0) 编辑