栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

检测exe是否已经运行,并将其置顶

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

检测exe是否已经运行,并将其置顶

摘要

在很多pc应用中,基本上都需要有这样的判断,保证在一个终端只运行一个winform的client。并且如果最小化了,用户再次双击桌面图标的时候,将client置顶显示。

解决方案

需要使用windows的API,可以很方便的实现这个目的。

代码如下:


static class Program  
    {  
  
        private const int WS_SHOWNORMAL = 1;  
        [Dllimport("User32.dll")]  
        private static extern bool ShowWindowAsync(IntPtr hWnd, int cmdShow);  
        [Dllimport("User32.dll")]  
        private static extern bool SetForegroundWindow(IntPtr hWnd);  
  
        ///   
        /// 应用程序的主入口点。  
        ///   
        [STAThread]  
        static void Main()  
        {  
            Process instance = GetRunningInstance();  
            if (instance == null)  
            {  
                Application.EnableVisualStyles();  
                Application.SetCompatibleTextRenderingDefault(false);  
                Application.Run(new frm_Main());//在这启动主窗体。  
            }  
            else  
            {  
                HandleRunningInstance(instance);  
            }  
        }  
        ///   
        /// 获取当前是否具有相同进程。  
        ///   
        ///   
        public static Process GetRunningInstance()  
        {  
            Process current = Process.GetCurrentProcess();  
            Process[] processes = Process.GetProcessesByName(current.ProcessName);  
            //遍历正在有相同名字运行的例程     
            foreach (Process process in processes)  
            {  
                //忽略现有的例程     
                if (process.Id != current.Id)  
                    //确保例程从EXE文件运行   
                    if ( System.Reflection.Assembly.GetExecutingAssembly().Location.Replace("/" , "\") == current.MainModule.FileName )  
                        return process;  
            }  
            return null;  
        }  
        ///   
        /// 激活原有的进程。  
        ///   
        ///   
        public static void HandleRunningInstance(Process instance)  
        {  
            ShowWindowAsync(instance.MainWindowHandle, WS_SHOWNORMAL);  
            SetForegroundWindow(instance.MainWindowHandle);  
        }  
    }  
}

上面代码的意思是判断exe是否已经在进程列表中,如果存在则标识已经运行了客户端,如果存在获取窗口的句柄,并进行展示。

资料来源

https://www.codeproject.com/Articles/2976/Detect-if-another-process-is-running-and-bring-it

http://blog.csdn.net/wesley219/article/details/11050607

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/231401.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号