WinForm防止程序重复运行的方法分析
程序员文章站
2023-11-12 19:36:46
本文实例讲述了winform防止程序重复运行的方法。分享给大家供大家参考,具体如下:
需求:
1、点击“关闭”按钮时,程序最小化到托盘,并没有退出,这时再次运行程序,不...
本文实例讲述了winform防止程序重复运行的方法。分享给大家供大家参考,具体如下:
需求:
1、点击“关闭”按钮时,程序最小化到托盘,并没有退出,这时再次运行程序,不会重复运行,而是显示已运行的程序;
2、支持不同目录;
3、支持修改名称。
代码(不支持修改名称,不支持不同目录):
using system; using system.collections.generic; using system.io; using system.linq; using system.text; using system.windows.forms; using tool; using system.diagnostics; using system.reflection; using system.runtime.interopservices; namespace 计算器 { static class program { [dllimport("user32.dll")] public static extern intptr findwindow(string lpclassname, string lpwindowname); /// <summary> /// 该函数设置由不同线程产生的窗口的显示状态。 /// </summary> /// <param name="hwnd">窗口句柄</param> /// <param name="cmdshow">指定窗口如何显示。查看允许值列表,请查阅showwlndow函数的说明部分。</param> /// <returns>如果函数原来可见,返回值为非零;如果函数原来被隐藏,返回值为零。</returns> [dllimport("user32.dll")] private static extern bool showwindow(intptr hwnd, int cmdshow); /// <summary> /// 该函数将创建指定窗口的线程设置到前台,并且激活该窗口。键盘输入转向该窗口,并为用户改各种可视的记号。系统给创建前台窗口的线程分配的权限稍高于其他线程。 /// </summary> /// <param name="hwnd">将被激活并被调入前台的窗口句柄。</param> /// <returns>如果窗口设入了前台,返回值为非零;如果窗口未被设入前台,返回值为零。</returns> [dllimport("user32.dll")] private static extern bool setforegroundwindow(intptr hwnd); private const int sw_shownormal = 1; /// <summary> /// 应用程序的主入口点。 /// </summary> [stathread] static void main() { application.enablevisualstyles(); application.setcompatibletextrenderingdefault(false); process processes = runninginstance(); if (processes == null) { application.run(new form1()); } else { handlerunninginstance(processes); } } /// <summary> /// 获取正在运行的实例,没有运行的实例返回null; /// </summary> public static process runninginstance() { process current = process.getcurrentprocess(); process[] processes = process.getprocessesbyname(current.processname); foreach (process process in processes) { if (process.id != current.id) { if (assembly.getexecutingassembly().location.replace("/", "\\") == current.mainmodule.filename) { return process; } } } return null; } /// <summary> /// 显示已运行的程序。 /// </summary> public static void handlerunninginstance(process instance) { try { intptr formhwnd = findwindow(null, "计算器"); showwindow(formhwnd, sw_shownormal); //显示 setforegroundwindow(formhwnd); //放到前端 } catch (exception ex) { messagebox.show(ex.message); } } } }
代码(支持修改名称,支持不同目录):
using system; using system.collections.generic; using system.io; using system.linq; using system.text; using system.windows.forms; using tool; using system.diagnostics; using system.reflection; using system.runtime.interopservices; namespace 计算器 { static class program { [dllimport("user32.dll")] public static extern intptr findwindow(string lpclassname, string lpwindowname); /// <summary> /// 该函数设置由不同线程产生的窗口的显示状态。 /// </summary> /// <param name="hwnd">窗口句柄</param> /// <param name="cmdshow">指定窗口如何显示。查看允许值列表,请查阅showwlndow函数的说明部分。</param> /// <returns>如果函数原来可见,返回值为非零;如果函数原来被隐藏,返回值为零。</returns> [dllimport("user32.dll")] private static extern bool showwindow(intptr hwnd, int cmdshow); /// <summary> /// 该函数将创建指定窗口的线程设置到前台,并且激活该窗口。键盘输入转向该窗口,并为用户改各种可视的记号。系统给创建前台窗口的线程分配的权限稍高于其他线程。 /// </summary> /// <param name="hwnd">将被激活并被调入前台的窗口句柄。</param> /// <returns>如果窗口设入了前台,返回值为非零;如果窗口未被设入前台,返回值为零。</returns> [dllimport("user32.dll")] private static extern bool setforegroundwindow(intptr hwnd); private const int sw_shownormal = 1; /// <summary> /// 应用程序的主入口点。 /// </summary> [stathread] static void main() { common.autoregister(); application.enablevisualstyles(); application.setcompatibletextrenderingdefault(false); bool createnew; using (system.threading.mutex m = new system.threading.mutex(true, application.productname, out createnew)) { if (createnew) { fileoperator.setvalue("processid", process.getcurrentprocess().id.tostring()); //进程id写入文件 application.run(new form1()); } else { try { string strprocessid = fileoperator.getvalue("processid"); //从文件中获取进程id int processid = convert.toint32(strprocessid); process process = process.getprocessbyid(processid); handlerunninginstance(process); } catch { fileoperator.setvalue("processid", process.getcurrentprocess().id.tostring()); //进程id写入文件 application.run(new form1()); } } } } /// <summary> /// 显示已运行的程序。 /// </summary> public static void handlerunninginstance(process instance) { try { intptr formhwnd = findwindow(null, "计算器"); showwindow(formhwnd, sw_shownormal); //显示 setforegroundwindow(formhwnd); //放到前端 } catch (exception ex) { messagebox.show(ex.message); } } } }
其实,intptr formhwnd = findwindow(null, "计算器"); 这段代码是有bug的,比如你打开一个名为“计算器”的文件夹,那么findwindow找到的其实是这个文件夹,而不是计算器程序。我们可以在主窗体第一次显示的时候,记下窗口句柄,代码如下:
private void form1_shown(object sender, eventargs e) { fileoperator.setvalue("hwnd", process.getcurrentprocess().mainwindowhandle.tostring()); }
然后,显示已运行的程序时,从文件中读取之前记录的窗口句柄,代码如下:
/// <summary> /// 显示已运行的程序 /// </summary> public static void handlerunninginstance(process instance) { try { intptr hwnd = new intptr(convert.toint32(fileoperator.getvalue("hwnd"))); showwindow(hwnd, sw_shownormal); //显示 setforegroundwindow(hwnd); //放到前端 } catch (exception ex) { messagebox.show(ex.message); } }
综上,再整理一下,就能得到完美的解决方案。
更多关于c#相关内容感兴趣的读者可查看本站专题:《winform控件用法总结》、《c#窗体操作技巧汇总》、《c#数据结构与算法教程》、《c#常见控件用法教程》、《c#面向对象程序设计入门教程》及《c#程序设计之线程使用技巧总结》
希望本文所述对大家c#程序设计有所帮助。
上一篇: java整数与byte数组的转换实现代码
下一篇: 2018林肯mkc最新报价是多少!