Tagged Questions
18
votes
3answers
18k 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 ...
6
votes
4answers
3k views
How to create a JButton with a menu?
I want to create a Toolbar for my application.
If you click a button on that toolbar , it will pop-up a menu , just like the toolbar of eclipse.
I don't know how to do it in Swing. Can someone help ...
2
votes
2answers
173 views
How to prevent triggering of other events when closing a JPopupMenu by clicking outside it?
There are some properties of the right-click context menu I would like to replicate with a JPopupMenu:
When menu is open and you click elsewhere, menu closes.
When menu is open and you click ...
1
vote
2answers
87 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");
...