Top "Jpopupmenu" questions

JPopupMenu is the Java Swing implementation of a popup menu, a small window that pops up and displays a series of choices.

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

I'm currently creating a right-click context menu by instantiating a new JMenu on right click and setting its location to …

java swing contextmenu jpopupmenu
How to create a JButton with a menu?

I want to create a Toolbar in my application. If you click a button on that toolbar, it will pop …

java swing menu jbutton jpopupmenu
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 = …

java swing menu right-click jpopupmenu
How to add popup menu in JFrame in netbeans visual editor

I already try to add PopUp menu to JFrame by design in Netbeans visual editor, but it don't work. Can …

java swing user-interface netbeans jpopupmenu
Showing/hiding a JPopupMenu from a JButton; FocusListener not working?

I needed a JButton with an attached dropdown style menu. So I took a JPopupMenu and attached it to the …

java swing jbutton jpopupmenu
Open popup(Menu) on task tray icon with left click using java

I am working on task tray Icon in java, I like to open a popup Menu using left click same …

java swing trayicon jpopupmenu
JTable with JPopupMenu

how can I prevent triggering and showing JPopupMenu only if is Mouse Cursor over selected JTable'Row my question: if is …

java swing jtable onmouseover jpopupmenu
Find the JTable row on which a popup menu has been invoked

I have a JTable and a popup menu that is specific to each row. I want to calculate the row …

java swing jtable jpopupmenu
Adding JPopupMenu to JPanel

My code: class PanelGlowny extends JPanel implements ActionListener{} public class Formatka extends JFrame implements ActionListener{ private JMenuItem klienciMenuItem = new JMenuItem("…

java swing jpopupmenu
Adding vertical scroll to a JPopupMenu?

I would like to add a way to scroll through menu items in a JPopupMenu, much like scrolling through a …

java swing jpopupmenu