java swing 表单的热键创建
如何为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅如何使用键绑定,然后结合使用这些知识与
requestFocusInWindow()
。另请参见
setMnemonic( char)
按钮和setAccelerator( KeyStroke)
用于菜单项。或者更一般地说,使用Action 构建这些控件已配置值的
。See How to Use Key Bindings, then use that knowledge in conjunction with
requestFocusInWindow()
.See also
setMnemonic(char)
for buttons andsetAccelerator(KeyStroke)
for menu items. Or more generally, constructing those controls using anAction
that has the values configured.请参考以下链接
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.
这通常是通过使用 JLabel/JTextField 对来完成的。类似于:
然后使用 Alt-F 将焦点设置在文本字段上。
键绑定将自动为您完成。
This is generally done by using JLabel/JTextField pairs. Something like:
Then using Alt-F will set focus on the text field.
The Key Bindings will be done automatically for you.