C#只允许启动一个WinFrom进程的两种方法

黄舟
发布: 2016-12-21 14:43:44
原创
2107人浏览过

方法一:只禁止多个进程运行

view plaincopy to clipboardprint?
·········10········20········30········40········50········60········70········80········90········100·······110·······120·······130·······140·······150
[stathread]   
public static void main()   
{   
    bool ret;   
    system.threading.mutex mutex = new system.threading.mutex(true, application.productname, out ret);   
    if (ret)   
    {   
        system.windows.forms.application.enablevisualstyles();   //这两行实现   xp   可视风格      
        system.windows.forms.application.doevents();   
        system.windows.forms.application.run(new main());   
        //   main   为你程序的主窗体,如果是控制台程序不用这句      
        mutex.releasemutex();   
    }   
    else  
    {   
        messagebox.show(null, "有一个和本程序相同的应用程序已经在运行,请不要同时运行多个本程序。 这个程序即将退出。", application.productname, messageboxbuttons.ok, messageboxicon.warning);   
        //   提示信息,可以删除。      
        application.exit();//退出程序      
    }   
}  
[stathread]
public static void main()
{
    bool ret;
    system.threading.mutex mutex = new system.threading.mutex(true, application.productname, out ret);
    if (ret)
    {
        system.windows.forms.application.enablevisualstyles();   //这两行实现   xp   可视风格   
        system.windows.forms.application.doevents();
        system.windows.forms.application.run(new main());
        //   main   为你程序的主窗体,如果是控制台程序不用这句   
        mutex.releasemutex();
    }
    else
    {
        messagebox.show(null, "有一个和本程序相同的应用程序已经在运行,请不要同时运行多个本程序。 这个程序即将退出。", application.productname, messageboxbuttons.ok, messageboxicon.warning);
        //   提示信息,可以删除。   
        application.exit();//退出程序   
    }
}


方法二:禁止多个进程运行,并当重复运行时激活以前的进程 

view plaincopy to clipboardprint?
·········10········20········30········40········50········60········70········80········90········100·······110·······120·······130·······140·······150
[stathread]   
public static void main()   
{   
    //get   the   running   instance.      
    process instance = runninginstance();   
    if (instance == null)   
    {   
        system.windows.forms.application.enablevisualstyles();   //这两行实现   xp   可视风格      
        system.windows.forms.application.doevents();   
        //there   isn't   another   instance,   show   our   form.      
        application.run(new main());   
    }   
    else  
    {   
        //there   is   another   instance   of   this   process.      
        handlerunninginstance(instance);   
    }   
}   
public static process runninginstance()   
{   
    process current = process.getcurrentprocess();   
    process[] processes = process.getprocessesbyname(current.processname);   
    //loop   through   the   running   processes   in   with   the   same   name      
    foreach (process process in processes)   
    {   
        //ignore   the   current   process      
        if (process.id != current.id)   
        {   
            //make   sure   that   the   process   is   running   from   the   exe   file.      
            if (assembly.getexecutingassembly().location.replace("/", "\") == current.mainmodule.filename)   
            {   
                //return   the   other   process   instance.      
                return process;   
            }   
        }   
    }   
    //no   other   instance   was   found,   return   null.    
    return null;   
}   
public static void handlerunninginstance(process instance)   
{   
    //make   sure   the   window   is   not   minimized   or   maximized      
    showwindowasync(instance.mainwindowhandle, ws_shownormal);   
    //set   the   real   intance   to   foreground   window   
    setforegroundwindow(instance.mainwindowhandle);   
}   
[dllimport("user32.dll")]   
private static extern bool showwindowasync(intptr hwnd, int cmdshow);   
[dllimport("user32.dll")]   
private static extern bool setforegroundwindow(intptr hwnd);   
private const int ws_shownormal = 1;  
[stathread]
public static void main()
{
    //get   the   running   instance.   
    process instance = runninginstance();
    if (instance == null)
    {
        system.windows.forms.application.enablevisualstyles();   //这两行实现   xp   可视风格   
        system.windows.forms.application.doevents();
        //there   isn't   another   instance,   show   our   form.   
        application.run(new main());
    }
    else
    {
        //there   is   another   instance   of   this   process.   
        handlerunninginstance(instance);
    }
}
public static process runninginstance()
{
    process current = process.getcurrentprocess();
    process[] processes = process.getprocessesbyname(current.processname);
    //loop   through   the   running   processes   in   with   the   same   name   
    foreach (process process in processes)
    {
        //ignore   the   current   process   
        if (process.id != current.id)
        {
            //make   sure   that   the   process   is   running   from   the   exe   file.   
            if (assembly.getexecutingassembly().location.replace("/", "\") == current.mainmodule.filename)
            {
                //return   the   other   process   instance.   
                return process;
            }
        }
    }
    //no   other   instance   was   found,   return   null. 
    return null;
}
public static void handlerunninginstance(process instance)
{
    //make   sure   the   window   is   not   minimized   or   maximized   
    showwindowasync(instance.mainwindowhandle, ws_shownormal);
    //set   the   real   intance   to   foreground   window
    setforegroundwindow(instance.mainwindowhandle);
}
[dllimport("user32.dll")]
private static extern bool showwindowasync(intptr hwnd, int cmdshow);
[dllimport("user32.dll")]
private static extern bool setforegroundwindow(intptr hwnd);
private const int ws_shownormal = 1; 

 以上就是C#只允许启动一个WinFrom进程的两种方法的内容,更多相关内容请关注PHP中文网(www.php.cn)!

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号