我知道我可以通过枚举Process.GetProcesses来获取MainWindowHandle,但我也希望获得WPF应用程序可能拥有的所有WPF窗口的句柄。我需要在一个完全独立的过程中完成这项工作。我该怎么做?感谢
答案 0 :(得分:-1)
由于WPF进程有多个线程,因此您必须枚举所有线程以查找窗口。
我使用下面的Win32方法来执行此操作。您创建一个列表并添加到每次迭代调用的回调列表中。
[DllImport("user32.dll")]
public static extern bool EnumThreadWindows(int dwThreadId, EnumThreadWindowsCallBack lpfn, IntPtr lParam);
Win32.EnumThreadWindows(processThread.Id, (hWnd, lParam) =>
{
if (Win32.IsWindowVisible(hWnd))
{
Win32.RECT windowRect;
Win32.GetWindowRect(hWnd, out windowRect);
if (hWnd != _currentWindowHandle)
{
windowList.Add(new WindowInfo(hWnd, windowRect));
}
}
return true;
}, IntPtr.Zero);