获取进程的所有窗口句柄

使用Microsoft Spy ++,我可以看到以下属于一个进程的窗口:

处理XYZ窗口句柄,就像Spy ++一样以树形式显示给我:

A
  B
  C
     D
E
F
  G
  H
  I
  J
     K

我可以得到该过程,并且MainWindowHandle属性指向窗口F的句柄。如果我使用枚举子窗口,我可以获得G到K的窗口句柄列表,但是我无法弄清楚如何找到窗口A到D的句柄。我如何枚举不是由Process对象的MainWindowHandle指定的句柄的子项的窗口?

要枚举我正在使用win32调用:

[System.Runtime.InteropServices.DllImport(strUSER32DLL)]
            public static extern int EnumChildWindows(IntPtr hWnd, WindowCallBack pEnumWindowCallback, int iLParam);

IntPtr.Zero传递IntPtr.Zero hWnd以获取系统中的每个根窗口句柄。

然后你可以通过调用GetWindowThreadProcessId来检查窗口的所有者进程。


您可以使用EnumWindows获取每个顶级窗口,然后根据GetWindowThreadProcessId过滤结果。


对于每个人仍然想知道,这是答案:

List<IntPtr> GetRootWindowsOfProcess(int pid)
{
    List<IntPtr> rootWindows = GetChildWindows(IntPtr.Zero);
    List<IntPtr> dsProcRootWindows = new List<IntPtr>();
    foreach (IntPtr hWnd in rootWindows)
    {
        uint lpdwProcessId;
        WindowsInterop.User32.GetWindowThreadProcessId(hWnd, out lpdwProcessId);
        if (lpdwProcessId == pid)
            dsProcRootWindows.Add(hWnd);
    }
    return dsProcRootWindows;
}

public static List<IntPtr> GetChildWindows(IntPtr parent)
{
    List<IntPtr> result = new List<IntPtr>();
    GCHandle listHandle = GCHandle.Alloc(result);
    try
    {
        WindowsInterop.Win32Callback childProc = new WindowsInterop.Win32Callback(EnumWindow);
        WindowsInterop.User32.EnumChildWindows(parent, childProc, GCHandle.ToIntPtr(listHandle));
    }
    finally
    {
        if (listHandle.IsAllocated)
            listHandle.Free();
    }
    return result;
}

private static bool EnumWindow(IntPtr handle, IntPtr pointer)
{
    GCHandle gch = GCHandle.FromIntPtr(pointer);
    List<IntPtr> list = gch.Target as List<IntPtr>;
    if (list == null)
    {
        throw new InvalidCastException("GCHandle Target could not be cast as List<IntPtr>");
    }
    list.Add(handle);
    //  You can modify this to check to see if you want to cancel the operation, then return a null here
    return true;
}

对于WindowsInterop:

public delegate bool Win32Callback(IntPtr hwnd, IntPtr lParam);

对于WindowsInterop.User32:

[DllImport("user32.dll")]
public static extern uint GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);

[DllImport("user32.Dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool EnumChildWindows(IntPtr parentHandle, Win32Callback callback, IntPtr lParam);

现在可以简单地通过GetRootWindowsOfProcess获取每个根窗口,并通过GetChildWindows获取它们的子窗口。

链接地址: http://www.djcxy.com/p/6619.html

上一篇: Get all window handles for a process

下一篇: Get child window handles in C#