摘要:
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(); 阅读全文