EdwardShare

导航

 

public partial class App : Application
{
System.Threading.Mutex mutex;
public App()
{
this.Startup += new StartupEventHandler(App_Startup);
}
void App_Startup(object sender, StartupEventArgs e)
{
bool ret;
mutex = new System.Threading.Mutex(true, "ElectronicNeedleTherapySystem", out ret);

if (!ret)
{
MessageBox.Show("已经启动请先关闭之后再打开!");
Environment.Exit(0);
}

}
}

posted on 2023-11-17 10:36  程序员的夏天  阅读(20)  评论(0编辑  收藏  举报