EnumWindows function in Win10 enumerates only desktop apps(Win10中的EnumWindows函数只枚举桌面应用)
问题描述
文档 下划线:
注意对于 Windows 8 及更高版本,EnumWindows 仅枚举桌面应用程序的顶级窗口.
Note For Windows 8 and later, EnumWindows enumerates only top-level windows of desktop apps.
桌面应用"和非桌面应用"有什么区别?
这与地铁应用程序有关吗?
我问是因为 EnumWindows 在 Win10 中的行为与 Win7 相比有些不同.
I ask because EnumWindows is behaving somewhat different in Win10 compared with Win7.
推荐答案
你是对的.EnumWindows 只会查找属于非现代(Metro)应用程序的窗口.它将获得属于传统(桌面)程序的窗口.FindWindowEx,根据 几个来源,适用于所有类型的窗口,包括来自现代应用程序的窗口.
You are correct. EnumWindows will only find windows that belong to programs that aren't Modern (Metro) apps. It will get windows that belong to traditional (desktop) programs. FindWindowEx, according to several sources, does work all kinds of windows, including those from Modern apps.
这篇关于Win10中的EnumWindows函数只枚举桌面应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Win10中的EnumWindows函数只枚举桌面应用
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- C# 中多线程网络服务器的模式 2022-01-01
