尝试通过程序中的按钮单击重新启动程序,并尝试使用" restart()"和"重新创建()"不存在知道什么代码可以工作吗?
答案 0 :(得分:1)
你可以这样做:
System.Windows.Forms.Application.Restart(); // it does exist...
Application.Current.Shutdown(); // If you are using WPF, otherwise see below...
使用Application.Exit()
或this.Close()
作为Windows窗体应用程序中的第二行。