如何使用 C# 检测鼠标指针所在的文本?
我正在寻找一种能够检测鼠标指针所在文本的方法,无论用户当前使用什么标准 Windows 应用程序(IE、Firefox、Word、记事本等)。这可能吗? (老实说,这不是出于邪恶目的!)。我已经尝试过谷歌搜索和搜索,但到目前为止还没有任何有用的东西。
I'm looking for a way able to detect the text where the mouse pointer is, for whatever standard Windows app (IE, Firefox, Word, Notepad etc) the user is using at present. Is this possible ? (It's not for evil purposes, honest!). I've tried Googling and searching SO, but haven't got anything useful so far.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
几个想法:
我会尝试追求可访问性的想法。
A few ideas:
I'd try pursuing the accessibility idea.
根据您所指的内容,它在某些情况下可以起作用。
例如。您可以获取底层窗口句柄(hwnd)并向其发送 wm_gettext,然后您可能得到您想要的信息。
(例如按钮、文本框、某些标签等上的文本)
但是,如果您指向浏览器页面等上的某个位置,它不会执行您想要的操作。
嗯,CodeInChaos 打败了我。
Depending on what you point at, it can work in some cases.
eg. you could get the underlying window handle (hwnd) and send wm_gettext to it and you might get what you want back.
(e.g. text on buttons, textboxes, some labels etc)
however, it will not do what you want if you point somehwere on a browser page or so..
Meh, CodeInChaos beat me to it..
不,这是不可能的——至少在一般情况下是不可能的。唯一的可能性是查询将文本放在屏幕上的应用程序,本质上是询问“你在这个位置放置了什么?”
No, it's not possible -- at least not in a general way. The only possibility is to query the application that put the text on the screen, in essence asking it "what did you put at this location?"
您可以拍摄屏幕截图,然后使用 OCR 将图像转换为文本。我认为您可以查询操作系统的鼠标光标位置,然后关联它在图像中的位置。
这不是一个好的解决方案,但它给了你一些东西。
You could take a screen shot, then use OCR to translate the image to text. I think you can query the OS for the mouse cursor position, then correlate where it is in the image.
Not a good solution, but it gives you something.