美文网首页
C# 激活窗口

C# 激活窗口

作者: nickieeee | 来源:发表于2020-03-10 23:31 被阅读0次

    窗体启动后,再次启动时判断进程是否存在,如果已经存在则直接拉起当前进程,前置显示并聚焦窗口。

    /// <summary>
    /// 应用程序的主入口点。
    /// </summary>
    [STAThread]
    static void Main(string[] args)
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
    
        Process instance = RunningInstance();
        if (instance == null)
        {
            Application.Run(new Form1(args));
        }
        else
        {
            HandleRunningInstance(instance, args);
        }
    }
    
    private 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;
    }
    
    private static void HandleRunningInstance(Process instance, string[] args)
    {
        //ShowWindowAsync(instance.MainWindowHandle, 1); //调用api函数,正常显示窗口
        //SetForegroundWindow(instance.MainWindowHandle); //将窗口放置最前端
        IntPtr handle = FindWindow(null, WindowUtils.getWindowTitle(args[7]));
        if (handle == IntPtr.Zero)
        {
            return;
        }
        SwitchToThisWindow(handle, true);
    }       
    

    相关文章

      网友评论

          本文标题:C# 激活窗口

          本文链接:https://www.haomeiwen.com/subject/dfkodhtx.html