如何使用 C# 检测鼠标指针所在的文本?

发布于 2024-10-05 22:42:35 字数 132 浏览 3 评论 0原文

我正在寻找一种能够检测鼠标指针所在文本的方法,无论用户当前使用什么标准 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 技术交流群。

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

发布评论

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

评论(4

情深缘浅 2024-10-12 22:42:35

几个想法:

  1. 使用win32 api来查找curser下的控件。然后使用控件相关代码来获取光标下的文本部分。在简单的情况下,一个 WM_GetText 可能就足够了,
  2. 我隐约记得有一个可访问性 api 可以完全满足您的需求。但我不记得叫什么了。 http://msdn.microsoft.com/en-us/library/ms697707.aspx 可能是一个起点。
  3. OCR,对于已知字体来说应该不会太难,

我会尝试追求可访问性的想法。

A few ideas:

  1. use win32 api to find the control under the curser. Then use control dependent code to get the part of the text under the cursor. In simple cases a WM_GetText might be enough
  2. I vaguely recall that there is an accessibility api doing exactly what you want. But I don't remember what is was called. http://msdn.microsoft.com/en-us/library/ms697707.aspx might be a starting point.
  3. OCR, should not be too hard with known font

I'd try pursuing the accessibility idea.

伤痕我心 2024-10-12 22:42:35

根据您所指的内容,它在某些情况下可以起作用。

例如。您可以获取底层窗口句柄(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..

可爱暴击 2024-10-12 22:42:35

不,这是不可能的——至少在一般情况下是不可能的。唯一的可能性是查询将文本放在屏幕上的应用程序,本质上是询问“你在这个位置放置了什么?”

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?"

千仐 2024-10-12 22:42:35

您可以拍摄屏幕截图,然后使用 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.

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