Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. JMenuBar menuBar = new JMenuBar();
  2. setJMenuBar(menuBar);
  3. JMenu fileMenu = new JMenu("File");
  4. menuBar.add(fileMenu);
  5. JMenuItem openItem = new JMenuItem("Open");
  6. fileMenu.add(openItem);
  7. openItem.addActionListener(OpenAction);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement