根据不同需求,启动更新过后的程序
①关闭更新程序,启动主程序
1 System.Diagnostics.Process.Start(exePath + @"\GreenStarMES.exe"); 2 this.Close();
②启动主程序,不关闭更新程序,当主程序关闭时,同步关闭更新程序
1 System.Diagnostics.Process.Start(exePath + @"\GreenStarMES.exe").WaitForExit(); 2 this.Close();
时间: 2024-10-01 09:27:19