在 Carbon 中剪辑鼠标移动
如何使用 Carbon 将鼠标移动剪辑到窗口区域?
How can I clip the mouse movement into a window Region using Carbon?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 Carbon 将鼠标移动剪辑到窗口区域?
How can I clip the mouse movement into a window Region using Carbon?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我认为没有任何简单的方法可以做到这一点,这很好......这是一种“非 Mac 式”行为,会吓坏您的用户。也就是说,可能可以使用 CGAssociateMouseAndMouseCursorPosition 将鼠标与光标位置解耦,然后监视鼠标事件并将光标移动到您想要的位置。
I don't think there is any simple way to do it, and that's good... it's a "non-Mac-like" behavior that will freak out your users. That said, it would probably be possible to use
CGAssociateMouseAndMouseCursorPosition
to uncouple the mouse from the cursor position, then monitor mouse events and move the cursor to where you want.