使用 Java 创建按钮快捷方式,如 & (与号)与 Windows 窗体
我希望我能更好地表达这个问题。部分原因是我不知道我要找的东西的名字。
使用 Visual Studio 和 Windows 窗体,您可以通过按 Alt + [That Letter] 添加 & 符号来创建按钮的“快捷方式”键。就像 My &Button
... Alt + B 将是快捷方式。
Java SWING 中有类似的东西吗?我使用的是 NetBeans IDE 6.9.1。
谢谢大家!
I wish I could word this question better. Partly I just don't know the name of what I'm looking for.
With Visual Studio and Windows forms you can add an ampersand to create a "shortcut" key to a button by pressing Alt + [That Letter]. Like My &Button
... Alt + B would be the shortcut.
Is there an equivalent of this in Java SWING? I am using NetBeans IDE 6.9.1.
Thank you all!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这称为助记符。
使用
setMnemonic
(javadoc)请参阅 http://download.oracle.com/javase/tutorial/uiswing/components/menu.html#mnemonic
That's called a mnemonic.
Use
setMnemonic
(javadoc)See http://download.oracle.com/javase/tutorial/uiswing/components/menu.html#mnemonic
您使用 JMenutItem.setMnemonic() ;我不认为有像&符号这样方便的快捷方式。
You use
JMenutItem.setMnemonic()
; I don't think there's a handy-dandy shortcut like the ampersand.