如何获取外部应用程序中点击的UI元素的控制权
我如何获取在另一个第三方应用程序中单击的控件的控件(可能还有其文本值)(它不是 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 SetWindowsHookEx< 的文档/a> 使用
WH_CALLWNDPROC
参数。这将使您能够在记事本窗口过程中拦截消息。您需要弄清楚单击记事本中的菜单项会生成哪些消息,您可以使用 Spy++ 来实现这一点。但“文件”按钮没有真正的控件,它是菜单的一部分。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.