Java:助记符和 Unicode

发布于 2024-12-05 09:00:49 字数 439 浏览 2 评论 0原文

我目前在 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 技术交流群。

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

发布评论

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

评论(1

半窗疏影 2024-12-12 09:00:49

我很长时间没有这样做了,但我认为对于菜单快捷方式,您需要使用虚拟键值之一。

您可能会在 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.

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