java swing 中的全局加速器
我已经使用 setAccelerator() 在我的 java gui 中创建了加速器,除非具有相同键绑定的焦点处于焦点,否则它们会起作用。有没有办法全局启用它们,以便无论窗口具有焦点如何都会触发操作?
jmi.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_N, Event.CTRL_MASK))
I have made accelerators in my java gui by using setAccelerator(), and they work unless something with the same key binding is in focus. Is there a way to enable them globally so the action is triggered no matter what if the window has focus?
jmi.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_N, Event.CTRL_MASK))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看全局事件调度。您应该能够使用 KeyEventDispatcher 拦截任何按键事件以进行自定义处理。
Take a look at Global Event Dispatching. You should be able to use a KeyEventDispatcher to intercept any key event to do your custom processing.