阻止默认点击事件(WinAPI)

发布于 2024-09-16 23:35:59 字数 136 浏览 5 评论 0原文

我正在制作一个颜色滴管工具,当这个工具处于活动状态时,当用户单击或点击时,我只希望它运行我的鼠标事件,而不是其他任何东西,所以当这个工具运行时,如果用户单击开始球,它不应该打开开始菜单(或者如果用户单击其他任何内容)。我怎么能这样做呢?

谢谢

I'm making a color dropper tool and while this tool is active, when the user clicks or taps I only want it to run my mouse event, not anything else,so while this tool is running,if the user clicks the start orb, it should not open the start menu (or if the user clicks anything else). How could I do this?

Thanks

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

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

发布评论

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

评论(3

王权女流氓 2024-09-23 23:35:59

您可以实现系统范围的鼠标事件挂钩。 此处描述了挂钩。根据钩子的返回值,光标下方的应用程序将或不会接收鼠标事件。您可能需要实现低级鼠标挂钩才能捕获鼠标单击。钩子函数还应该提供鼠标光标的屏幕坐标。

You could implement a system-wide mouse event hook. Hooks are described here. Depending on your hook's return value, the application underneath the cursor will or will not receive the mouse event. You may need to implement a low level mouse hook in order to catch mouse clicks. The hook function should also be provided with the screen coordinates of the mouse cursor.

梦罢 2024-09-23 23:35:59

创建一个屏幕大小的透明窗口,将其放置在所有其他窗口之上。

Create a screen-sized transparent window that you put on top of all other windows.

﹉夏雨初晴づ 2024-09-23 23:35:59

尝试SetCapture() / ReleaseCapture()

Try SetCapture() / ReleaseCapture().

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