博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WinForm 应用程序禁止多个进程运行
阅读量:5838 次
发布时间:2019-06-18

本文共 3234 字,大约阅读时间需要 10 分钟。

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

using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;namespace 开启新的进程{    static class Program    {        ///         /// 应用程序的主入口点。         ///         [STAThread]        static void Main()        {            bool flag;            System.Threading.Mutex mutex = new System.Threading.Mutex(true, Application.ProductName, out flag);            if (flag)            {                // 启用应用程序的可视样式                   Application.EnableVisualStyles();                Application.SetCompatibleTextRenderingDefault(false);                // 处理当前在消息队列中的所有 Windows 消息                   Application.DoEvents();                Application.Run(new Form1());                // 释放 System.Threading.Mutex 一次                   mutex.ReleaseMutex();            }            else            {                MessageBox.Show(null, "相同的程序已经在运行了,请不要同时运行多个程序!\n\n这个程序即将退出!",                     Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Warning);                Application.Exit();            }        }    }}

 

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

using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;using System.Diagnostics;using System.Reflection;using System.Runtime.InteropServices;namespace 开启新的进程{    static class Program    {        ///         /// 应用程序的主入口点。         ///         [STAThread]        static void Main()        {            System.Diagnostics.Process instance = RunningInstance();            if (instance == null)            {                Application.EnableVisualStyles();                Application.SetCompatibleTextRenderingDefault(false);                Application.Run(new Form1());            }            else            {                HandleRunningInstance(instance);            }        }        ///         /// 获取当前正在运行的进程实例         ///         /// 
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; } } } // 如果没有其他同名进程存在,则返回 null return null; } // 指示该属性化方法由非托管动态链接库 (DLL) 作为静态入口点公开 [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; /// /// 如果有另一个同名进程启动,则调用之前的实例 /// /// private static void HandleRunningInstance(Process instance) { // 确保窗体不是最小化或者最大化 ShowWindowAsync(instance.MainWindowHandle, WS_SHOWNORMAL); // 将之前启动的进程实例弄到前台窗口 SetForegroundWindow(instance.MainWindowHandle); } }}

转载地址:http://wpjcx.baihongyu.com/

你可能感兴趣的文章
Ubuntu设置python3为默认版本
查看>>
JsonCpp 的使用
查看>>
问题账户需求分析
查看>>
JavaSE-代码块
查看>>
爬取所有校园新闻
查看>>
32、SpringBoot-整合Dubbo
查看>>
python面向对象基础
查看>>
HDU 2044 一只小蜜蜂(递归)
查看>>
docker 下 安装rancher 笔记
查看>>
spring两大核心对象IOC和AOP(新手理解)
查看>>
数据分析相关
查看>>
Python LDAP中的时间戳转换为Linux下时间
查看>>
微信小程序蓝牙连接小票打印机
查看>>
C++_了解虚函数的概念
查看>>
全新jmeter视频已经上架
查看>>
Windows 8下如何删除无线配置文件
查看>>
oracle系列(五)高级DBA必知的Oracle的备份与恢复(全录收集)
查看>>
hp 服务器通过串口重定向功能的使用
查看>>
国外10大IT网站和博客网站
查看>>
android第十一期 - SmoothSwitchLibrary仿IOS切换Activity动画效果
查看>>