Java:助记符和 Unicode
我目前在 Java SE 应用程序中遇到 unicode 和助记符问题。 在菜单栏中,我添加了一个名为“ФMnemonicUnicodeTest”的菜单,并将第一个字母设置为Mnemonic。
设置为助记符的整数值为“1060”。
- Windows 7
- 英文系统语言
- Java SE 6,32位
- 俄语/俄语键盘布局
- 物理俄语键盘
代码:
menu.setMnemonic((int)(text.substring(index+1, index+2).charAt(0)));
菜单显示正确(助记符有下划线)。
但助记符并不会用“ALT+Ф”展开菜单(该键在物理键盘上显示为“AФ”)。
我的问题是:为什么助记词不起作用以及如何修复?
I am currently having problems with unicode and mnemonics in a Java SE application.
In the menu bar i added a menu with the name "ФMnemonicUnicodeTest" and the first letter is set as Mnemonic.
The integer value which is set as mnemonic is "1060".
- Windows 7
- English system language
- Java SE 6, 32bit
- Russian / Russian keyboard layout
- Physical russian keyboard
Code:
menu.setMnemonic((int)(text.substring(index+1, index+2).charAt(0)));
The menu is displayed correctly (mnemonic character is underlined).
But the mnemonic does not expand the menu with "ALT + Ф" (the key is displayed at the physical keybpard as "AФ").
My question is: Why is the mnemonic not working and how can it be fixed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我很长时间没有这样做了,但我认为对于菜单快捷方式,您需要使用虚拟键值之一。
您可能会在 KeyEvent javadoc 中获得更多信息。
Long time I haven't been doing this, but I think that for menu shortcuts, you need to use one of the virtual key values.
You might get more information in the KeyEvent javadoc.