C# 进程和窗体句柄踩坑笔记 - 小众知识

C# 进程和窗体句柄踩坑笔记

2023-02-06 02:57:10 苏内容
  标签: 窗体
阅读:2347

知识点

1,通过进程名获取到的主窗体句柄不一定是这个程序的主窗体

2,通过进程名获取到的进程不唯一

  1. var pros = Process.GetProcessesByName(name);
  2. hand = pros[0].MainWindowHandle;

3,通过Win32 API GetActiveWindow和SetActiveWindow 设置窗体激活不生效

  1. handle = Win32Api.GetActiveWindow(); //无效
  2. Win32Api.SetActiveWindow(handle); //无效

4,通过Win32 API GetForegroundWindow和SetForegroundWindow 设置窗体激活有效

  1. handle = Win32Api.GetForegroundWindow(); //有效
  2. Win32Api.SetForegroundWindow(handle); //有效

5,通过 Win32 API FindWindow 可根据窗体标题获取窗体句柄,

要求一定要有标题,并且有可能重复,窗体类没有深入研究

 var hand = Win32Api.FindWindow(null, title)




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

/// <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);}       


扩展阅读
相关阅读
© CopyRight 2010-2021, PREDREAM.ORG, Inc.All Rights Reserved. 京ICP备13045924号-1