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

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

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

link|improve this answer
the example url is broken. is there an example to add submenu? – Kim Jong Woo Jul 25 '11 at 4:30
fixed url. the last link show how to add a submenu (look at "properties") – Binyamin Sharet Jul 25 '11 at 4:32
JMenu has an addSeparator() method, which ultimately uses a custom Separator class. – camickr Jul 25 '11 at 4:47
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.