Java:jpopupmenu中的子菜单带有出现的分隔符和快捷键?
如何将子菜单添加到现有的 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于分隔符,您将需要 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
阅读 Swing 教程中关于如何使用菜单的部分工作示例和解释。
Read the section from the Swing tutorial on How to Use Menus for working examples and explanations.