NSWindow:通过窗口将鼠标事件传递到下面的任何内容
是否可以通过 NSWindow 将鼠标事件传递到其后面的任何内容(即使它是来自另一个应用程序的窗口)?
我正在使用 NSWindow 创建桌面覆盖层,但希望仍然能够与其他窗口交互,即使它们位于我的覆盖层窗口后面。
Is it possible to pass mouse events through an NSWindow
to whatever is behind it (even if it is a window from another application)?
I am using NSWindow
to create a desktop overlay, but would like to still be able to interact with other windows, even if they are behind my overlay window.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IIRC,您可以只使用
[window setIgnoresMouseEvents:YES]
。IIRC, you can just use
[window setIgnoresMouseEvents:YES]
.