Tagged Questions

21
votes
3answers
19k views

How do I create a right click context menu in Java Swing?

I'm working on a school project and we want to implement a right click pop-up menu in the gui. Currently we are doing something like creating a JMenu on right click and setting its location to that ...
1
vote
2answers
110 views

How To Create a Pop Up Menu with Sub Menu in Java

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"); ...