如何使用C# EnumWindows遍历窗口

c#
1023
2024/8/12 13:17:34
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

您可以使用以下方法来遍历窗口:

  1. 首先,您需要导入用户32.dll库:
using System;
using System.Runtime.InteropServices;
  1. 然后定义EnumWindows函数:
[DllImport("user32.dll")]
public static extern bool EnumWindows(EnumWindowsProc lpEnumFunc, IntPtr lParam);

public delegate bool EnumWindowsProc(IntPtr hwnd, IntPtr lParam);
  1. 编写遍历窗口的方法:
public static bool EnumWindowCallback(IntPtr hwnd, IntPtr lParam)
{
    // 进行窗口处理的代码
    // 例如获取窗口标题等
    return true; // 返回true继续遍历,返回false停止遍历
}

public void EnumerateWindows()
{
    EnumWindows(EnumWindowCallback, IntPtr.Zero);
}
  1. 调用遍历窗口的方法:
EnumerateWindows();

通过这种方法,您可以遍历所有窗口,并在EnumWindowCallback方法中处理每个窗口的信息。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: c#中tuple的特点有哪些