Mutex mutex = new Mutex(false, "ThisShouldOnlyRunOnce"); //判断互斥体是否使用中。ThisShouldOnlyRunOnce为互斥变量
bool Running = !mutex.WaitOne(0, false);
if (! Running)
{
Application.Run(new Form1());
}
else
{
MessageBox.Show("应用程序已经启动!");
}
bool Running = !mutex.WaitOne(0, false);
if (! Running)
{
Application.Run(new Form1());
}
else
{
MessageBox.Show("应用程序已经启动!");
}
核心就是在系统中注册一个互斥变量,并使用该互斥体控制应用程序的加载。