如何获取外部应用程序中点击的UI元素的控制权

发布于 2024-12-24 17:34:27 字数 257 浏览 1 评论 0原文

我如何获取在另一个第三方应用程序中单击的控件的控件(可能还有其文本值)(它不是 .net 或 wpf 应用程序,其中的答案无法解决我的问题)

我可以获得点击我的应用程序中的事件(使用此处提到的全局挂钩)我想要控件/该特定 UI 元素的句柄

示例:我打开了记事本,当我单击“文件”菜单时,我想要控制该“文件”按钮。

How can i get the control (and possibly its text value) of a control which was clicked in another third party application (its not a .net or wpf application for which there are answers which did not solve my problem)

I can get the click event in my app (using the global hooks as mentioned here) i want the control/handle of that particular UI Element

Example : I have opened Notepad and when i click on File Menu, i want the control of that File button.

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

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

发布评论

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

评论(1

嘿看小鸭子会跑 2024-12-31 17:34:27

Look at the documentation for SetWindowsHookEx using the WH_CALLWNDPROC param. This will let you intercept messages in Notepad window procedure. You'll need to figure out which messages get generated from clicking the menu items in Notepad, you can use Spy++ for that. But there is no real control for the File button, it is part of a menu.

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