java swing 中的全局加速器

发布于 2024-11-15 18:15:28 字数 209 浏览 3 评论 0原文

我已经使用 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 技术交流群。

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

发布评论

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

评论(1

_蜘蛛 2024-11-22 18:15:28

查看全局事件调度。您应该能够使用 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.

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