• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C#让程序只运行一次实例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

添加引用

using System.Reflection;
using System.Runtime.InteropServices;
using System.Diagnostics;
调用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;
添加如下两个函数
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);
}

在MAIN中添加如下代码
public static void Main()
{
    Process instance 
= RunningInstance();
    if (instance == null)
    {
        Application.Run(new Form1())
;
    }
    else
    {
        HandleRunningInstance(instance)
;
    }
}

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap