如何将 Enter 作为快捷键分配给 Eclipse RCP 应用程序中的按钮

发布于 2024-12-16 22:41:01 字数 141 浏览 4 评论 0原文

我在组小部件中有一个按钮,我只想创建一个键盘快捷键(输入),以便调用按钮操作并聚焦。有趣的是,当我按空格(键盘上)时,会调用相应的按钮操作,但不会不能与 Enter 一起使用。最终我想要得到的只是简单地按 Enter 键,以便触发按钮操作。任何想法,以便我可以尝试它。

I have a button in a group widget and i simply want to create a keyboard shortcut(enter) so that the button action gets called and focused.Interestingly what happened is when i press space(on keyboard)the respective button action gets called which doesn't work with enter.Eventually all I'm trying to get is simply press enter so that button action triggers.Any ideas so that i can play-around it.

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

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

发布评论

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

评论(2

甜扑 2024-12-23 22:41:01

Enter 键 (SWT.CR) 不会调用当前按钮,而是调用 Shell 的默认按钮。您可以使用以下命令设置默认按钮

shell.setDefaultButton(button);

The Enter key (SWT.CR) does not invoke the current button, but rather the default button of the Shell. You set the default button with

shell.setDefaultButton(button);
呢古 2024-12-23 22:41:01

也许您正在寻找的是 Button 类的方法 #addKeyListener。实现一个KeyListener,并在#keyReleased(KeyEvent keyEvent)方法中评估keyEvent,如下所示:if (e.keyCode == SWT .CR || e.keyCode == SWT.KEYPAD_CR) { //此处为您的代码}

Maybe what you're searching for is the method #addKeyListener of class Button. Implement a KeyListener and in the #keyReleased(KeyEvent keyEvent) method evaluate keyEvent like this: if (e.keyCode == SWT.CR || e.keyCode == SWT.KEYPAD_CR) { //your code here}

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