您可以使用以下方法来遍历窗口:
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方法中处理每个窗口的信息。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c#中tuple的特点有哪些