java swing 表单的热键创建

发布于 2024-12-22 09:17:18 字数 180 浏览 0 评论 0原文

如何为 java swing 制作的表单创建热键?例如,为学生详细信息创建表单意味着如果我按 ALT+N 意味着光标将转到该姓名输入字段。ALT+R 意味着光标将转到 Reg。不输入字段。与mark1(m1)、mark(2)等相同。同时表单包含保存、退出按钮,如果按CTRL+S则表示选择保存按钮。CTRL+X表示退出按钮将选择。如何做到这一点?

How to Create hot keys for form which is made by java swing?for example the form is create for student details means if I press ALT+N means the cursor will goto that name entering field.ALT+R means the cursor will goto Reg.no entering Field.same like as mark1(m1),mark(2) and so on.At that same time the form contains save,exit buttons if I press CTRL+S means the Save button will select.CTRL+X means the exit button will select.how to do this?

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

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

发布评论

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

评论(3

单身情人 2024-12-29 09:17:18

请参阅如何使用键绑定,然后结合使用这些知识与 requestFocusInWindow()


CTRL+X 表示选择退出按钮。

另请参见 setMnemonic( char) 按钮和 setAccelerator( KeyStroke) 用于菜单项。或者更一般地说,使用 Action 构建这些控件已配置值的

See How to Use Key Bindings, then use that knowledge in conjunction with requestFocusInWindow().


CTRL+X means the exit button will select.

See also setMnemonic(char) for buttons and setAccelerator(KeyStroke) for menu items. Or more generally, constructing those controls using an Action that has the values configured.

木格 2024-12-29 09:17:18

请参考以下链接

http://docs.oracle.com/javase/教程/uiswing/misc/keybinding.html
这可能是一个很好的起点。

Please refer the following link

http://docs.oracle.com/javase/tutorial/uiswing/misc/keybinding.html
It might be a good place to start.

棒棒糖 2024-12-29 09:17:18

表示如果我按 ALT+N 则表示光标将转到该名称输入字段

这通常是通过使用 JLabel/JTextField 对来完成的。类似于:

JLabel firstNameLabel = new JLabel("First Name");
JTextField firstNameTextField(15);
firstNameLabel.setLabelFor( firstNameTextField );
firstNameLabel.setDisplayedMnemonic( 'F' );
panel.add( firstNameLabel );
panel.add( firstNameTextField );

然后使用 Alt-F 将焦点设置在文本字段上。

键绑定将自动为您完成。

means if I press ALT+N means the cursor will goto that name entering field

This is generally done by using JLabel/JTextField pairs. Something like:

JLabel firstNameLabel = new JLabel("First Name");
JTextField firstNameTextField(15);
firstNameLabel.setLabelFor( firstNameTextField );
firstNameLabel.setDisplayedMnemonic( 'F' );
panel.add( firstNameLabel );
panel.add( firstNameTextField );

Then using Alt-F will set focus on the text field.

The Key Bindings will be done automatically for you.

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