使用 pinvv 检测窗口文本变化

发布于 2024-08-20 21:55:50 字数 65 浏览 6 评论 0原文

有什么方法可以查看仅由句柄引用的“窗口”的内容是否已更改?比如从 pinvoke FindWindow 获得的一个?

Is there any way to see if the contents of a 'window' have changed, that is referenced only by a handle? Such as one obtained from a pinvoke FindWindow?

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

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

发布评论

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

评论(1

幽梦紫曦~ 2024-08-27 21:55:50

如果您想收到文本更改的通知,那就不行。某些窗口会向其父窗口发送更改通知,但您必须在该过程中拦截这些消息,而且并非所有窗口都会发送通知。 (我认为您使用的FindWindow不是在进程中)

如果您想获取文本并检查自己,您可以通过pinvoke到GetWindowText或< code>SendMessage(hwnd, WM_GETTEXT, ...); (GetWindowText 只是 SendMessage 的一个有用的包装)

If you want to be notified that the text changed, then no. Some windows send notifications of changes to their parent windows, but you would have to be in the process to intercept those messages, and not all windows even send notifications. (I presume by the fact that you are using FindWindow that you are not in-process)

If you want to get the text and check for yoursef, you can do that with a pinvoke to GetWindowText or to SendMessage(hwnd, WM_GETTEXT, ...); (GetWindowText is just a helpful wrapper around a SendMessage)

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