Winform 重启

if   (   MessageBox.Show("要重新启动嘛?","提示",   MessageBoxButtons.YesNoCancel,  
  MessageBoxIcon.Question)   ==   DialogResult.Yes)  
   
  System.Diagnostics.Process.Start(System.Reflection.Assembly.GetExecutingAssembly().Location);

你可能感兴趣的:(WinForm)