SetCapture 和 IWebBrowser2 容器的问题

发布于 2024-11-30 05:03:31 字数 226 浏览 0 评论 0原文

我有一个 IWebBrowser2 的 OLE 对象包装在窗口中。

在某些时候,我展开窗口及其 OLE 对象,并且希望它在外部单击(即 Web 浏览器外部的每次单击)时折叠。

我在窗口包装器上使用 SetCapture 但由于某种原因,在捕获期间,Web浏览器没有收到任何鼠标事件(点击、移动等...)

有什么想法\想法吗?

谢谢,
奥马尔

I have an OLE object of IWebBrowser2 wrapped in a window.

At some point I expand the window and its OLE object and I'd like it to collapse on external click (i.e. every click that is outside the web browser).

I use SetCapture on the window wrapper but from some reason, during the capture, the Webbrowser doesn't receive any mouse events (clicks,move etc...)

Any thoughts\ideas?

Thanks,
Omer

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

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

发布评论

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

评论(1

帅哥哥的热头脑 2024-12-07 05:03:31

引用自 SetCapture< /a>:

将鼠标捕获设置为属于指定窗口
当前线程。 SetCapture 捕获鼠标输入
位于捕获窗口上方,或按下鼠标按钮时
当鼠标位于捕获窗口上方并且按钮仍然处于静止状态时
向下。一次只能捕获一个窗口。

因此,您无法在窗口上使用 SetCapture 来实际捕获点击。它专门针对用户单击窗口并将鼠标移出,同时按住按钮的情况。所以你将不得不使用另一种机制。

Cite from SetCapture:

Sets the mouse capture to the specified window belonging to the
current thread. SetCapture captures mouse input either when the mouse
is over the capturing window, or when the mouse button was pressed
while the mouse was over the capturing window and the button is still
down. Only one window at a time can capture the mouse.

So you cannot use SetCapture on a window to actually capture clicks. It specifically for the case where the user clicks your window and moves the mouse out, while keeping the button pressed. So you will have to use another mechanism.

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