如何检测屏幕上特定点的窗口/控件?

发布于 2024-07-30 10:54:03 字数 49 浏览 3 评论 0原文

是否有 Win32 API 调用来确定哪些窗口和/或控件在某个坐标和/或鼠标下可见?

Is there a Win32 API call to determine what window and/or control is visible at a certain coordinates and/or under the mouse?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

送你一个梦 2024-08-06 10:54:03

您可以使用 GetWindowFromPoint。 它将返回窗口句柄,以便您可以使用 GetClassName 函数来查看它是哪个控件。

这是一个例子:
http://support.microsoft.com/kb/112649

You can use GetWindowFromPoint. It will return the window handle so you can than use GetClassName function to see which control it is.

here is an example:
http://support.microsoft.com/kb/112649

九八野马 2024-08-06 10:54:03

使用 WindowFromPointChildWindowFromPointChildWindowFromPointEx Win32 函数。

Use the WindowFromPoint, ChildWindowFromPoint or ChildWindowFromPointEx Win32 functions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文