您可以使用以下方法来遍历窗口:
using System;
using System.Runtime.InteropServices;
[DllImport("user32.dll")]
public static extern bool EnumWindows(EnumWindowsProc lpEnumFunc, IntPtr lParam);
public delegate bool EnumWindowsProc(IntPtr hwnd, IntPtr lParam);
public static bool EnumWindowCallback(IntPtr hwnd, IntPtr lParam)
{
// 进行窗口处理的代码
// 例如获取窗口标题等
return true; // 返回true继续遍历,返回false停止遍历
}
public void EnumerateWindows()
{
EnumWindows(EnumWindowCallback, IntPtr.Zero);
}
EnumerateWindows();
通过这种方法,您可以遍历所有窗口,并在EnumWindowCallback方法中处理每个窗口的信息。