如何将助记符放在角色的第二个实例下(Java-Swing)?

发布于 2024-11-19 18:56:21 字数 339 浏览 6 评论 0原文

我有一个名为 Button1 的 JButton ,其中包含文本“Alter Today”。

我想在此按钮的“Today”一词中的“T”下设置助记符(即“Alter Today”中“t”或“T”的第二个实例)。

当我尝试执行以下操作时:

button1.setMnemonic(6);

我看不到带下划线的“T”。

当我这样做时:

button1.setMnemonic('T');

它仍然在“Alter”一词中的“t”下划线。

怎么做呢?

I have a JButton named button1 with text "Alter Today".

I want to set a mnemonic under 'T' in the word 'Today' of this button (that is second instance of 't' or 'T' in 'Alter Today').

When I am trying to do:

button1.setMnemonic(6);

I am not able to see underlined 'T'.

When I am doing:

button1.setMnemonic('T');

it is still underlining 't' in the word 'Alter'.

How to do it?

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

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

发布评论

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

评论(3

只为守护你 2024-11-26 18:56:21

试试这个 -

bt.setMnemonic('T');

bt.setDisplayedMnemonicIndex(6);

希望有帮助:)

Try this -

bt.setMnemonic('T');

bt.setDisplayedMnemonicIndex(6);

Hope that helps :)

仅一夜美梦 2024-11-26 18:56:21
button.setDisplayedMnemonicIndex(...);
button.setDisplayedMnemonicIndex(...);
删除会话 2024-11-26 18:56:21
JButton button = new JButton("Alter Today");
button.setMnemonic('T');
// or button.setMnemonic(6);
// or button.setMnemonic(KeyEvent.VK_T);
JButton button = new JButton("Alter Today");
button.setMnemonic('T');
// or button.setMnemonic(6);
// or button.setMnemonic(KeyEvent.VK_T);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文