编程语言
首页 > 编程语言> > C#防止程序多开

C#防止程序多开

作者:互联网

private void Form1_Load(object sender, EventArgs e)
{
    bool Exist;//定义一个bool变量,用来表示是否已经运行
    //创建Mutex互斥对象
    System.Threading.Mutex newMutex = new System.Threading.Mutex(true, "仅一次", out Exist);
    if (Exist)//如果没有运行
    {
        newMutex.ReleaseMutex();//运行新窗体
    }
    else
    {
        MessageBox.Show("本程序一次只能运行一个实例!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);//弹出提示信息
        this.Close();//关闭当前窗体
    }
}


private void Form1_Load(object sender, EventArgs e)
{
    //获取当前活动进程的模块名称
    string moduleName = Process.GetCurrentProcess().MainModule.ModuleName;
    //返回指定路径字符串的文件名
    string processName = System.IO.Path.GetFileNameWithoutExtension(moduleName);
    //根据文件名创建进程资源数组
    Process[] processes = Process.GetProcessesByName(processName);
    //如果该数组长度大于1,说明多次运行
    if (processes.Length > 1)
    {
        MessageBox.Show("本程序一次只能运行一个实例!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);//弹出提示信息
        this.Close();//关闭当前窗体
    }

标签:Exist,C#,多开,程序,System,Process,Mutex,窗体,运行
来源: https://www.cnblogs.com/cloveo/p/15319456.html