I would like to add right click menu for my program. I added basit menu with the following code:

            Pmenu = new JPopupMenu("Menu");
            menuItem = new JMenuItem("Sections");
            Pmenu.add(menuItem);
            menuItem = new JMenuItem("Numbers");
            Pmenu.add(menuItem);

However I want to add submenu to these menus, such as user hover the Sections menu, submenu will open and sections are shown.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

First Object name usually start with a small letter, caps letter usually used for class/interface names.

for your question, there is the code for submenu

//parent menu
JPopupMenu pmenu = new JPopupMenu("Menu");

//sub menu
JMenu sectionsMenu = new JMenu("Sections");
JMenuItem menuItem1 = new JMenuItem("Item1");
sectionsMenu .add(menuItem1 );
JMenuItem menuItem2 = new JMenuItem("Item2");
sectionsMenu .add(menuItem2 );

pmenu.add(menuItem);

//regular menu item
menuItem = new JMenuItem("Numbers");
Pmenu.add(menuItem);

Jmenu tutorial or submenu examble

link|improve this answer
+1 Java Naming Conventions – mKorbel Oct 5 '11 at 14:10
feedback

Add a JMenu instance to your JPopupMenu. The JMenu should of course contain JMenuItem instances.

See http://download.oracle.com/javase/tutorial/uiswing/components/menu.html for a tutorial over menus in Swing.

link|improve this answer
I used JMenu in my menubar, but how should I show that menu in exact location when user right-clicked ? – CanCeylan Oct 5 '11 at 13:40
1  
Use myPanel.setComponentPopupMenu(popupMenu), and the popup menu will appear when you right-click on myPanel. – JB Nizet Oct 5 '11 at 13:44
feedback

Your Answer

 
or
required, but never shown

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