Java:jpopupmenu中的子菜单带有出现的分隔符和快捷键?

发布于 2024-11-26 09:42:55 字数 205 浏览 1 评论 0原文

如何将子菜单添加到现有的 jpopupmenu 中?

当您右键单击出现 jpopupmenu 时,我想访问另一个菜单下的子菜单。

如何在 jpopupmenu 中添加分隔符?快捷键怎么样?

下图描述了我想要的。

在此处输入图像描述

how do you go about adding submenu's to an existing jpopupmenu?

when you right click the jpopupmenu appears, I want to access submenus under another menu.

how do you add separators in the jpopupmenu? what about shortcut keys?

Below image describes what I want.

enter image description here

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

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

发布评论

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

评论(2

苏大泽ㄣ 2024-12-03 09:42:55

对于分隔符,您将需要 JSeparator,请参阅示例此处

要绑定快捷方式,您需要调用 setMnemonic,参见示例 这里

对于子菜单,只需添加 JMenu到现有的 JMenu/JPopupMenu 作为子项,请参见示例 这里

注:链接4-6是同一个链接

For separators, you will need JSeparator, see example here.

For binding a shortcut, you will need to call setMnemonic, see example here.

For sub-menu, simply add a JMenu to an existing JMenu/JPopupMenu as a child, see example here.

Note: links 4-6 are the same one

乞讨 2024-12-03 09:42:55

阅读 Swing 教程中关于如何使用菜单的部分工作示例和解释。

Read the section from the Swing tutorial on How to Use Menus for working examples and explanations.

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