在程序运行结束时释放互斥对象, 然后执行重启.
statischer String mutexFlagStr = "TEST1";
static public bool requestRestart = false;
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
// 通过互斥来防止程序多重启动
bool blnCreate;
Mutex m = new Mutex(true, mutexFlagStr, out blnCreate);
if (blnCreate)
{
Application.Run(new FormMain());
m.ReleaseMutex();
m.Close();
if (requestRestart)
{
Application.Restart();
}
}
anders
{
MessageBox.Show("Die Nachricht wird nicht angezeigt.)");
Application.Exit();
}
}
Wenn Sie die Funktion „requestRestart“ verwenden, wird „true“ angezeigt, und die Anwendung „Application.Exit();“
-