Mega Code Archive

 
Categories / Java / Swing JFC
 

Creating a JMenuBar, JMenu, and JMenuItem Component

import javax.swing.JFrame; import javax.swing.JMenu; import javax.swing.JMenuBar; import javax.swing.JMenuItem; public class Main {   public static void main(String[] argv) throws Exception {     // Create the menu bar     JMenuBar menuBar = new JMenuBar();     // Create a menu     JMenu menu = new JMenu("Menu Label");     menuBar.add(menu);     // Create a menu item     JMenuItem item = new JMenuItem("Item Label");     //item.addActionListener(actionListener);     menu.add(item);     JFrame frame = new JFrame();     // Install the menu bar in the frame     frame.setJMenuBar(menuBar);   } }