我正在寻找一个简单的代码来枚举Windows 8上的所有窗口,以便查找具有特定标题的桌面窗口(例如:" Untilted - Notepad")。
我用过:
BOOL WINAPI EnumWindows(
_In_ WNDENUMPROC lpEnumFunc,
_In_ LPARAM lParam
);
但根据the MSDN,For Windows 8 and later, EnumWindows enumerates only top-level windows of desktop apps.
。
Windows 8的任何替代方案?
(PS:这跟随my java question,但我觉得.net的人可以帮助我更多关于此事。)