AddMenuBarToFrame.java Source code

Java tutorial

Introduction

Here is the source code for AddMenuBarToFrame.java

Source

import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;

public class AddMenuBarToFrame extends JFrame {
    private JMenuBar menuBar = new JMenuBar(); // Window menu bar

    public AddMenuBarToFrame(String title) {
        setTitle(title);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setJMenuBar(menuBar); // Add the menu bar to the window
        JMenu fileMenu = new JMenu("File"); // Create File menu
        JMenu elementMenu = new JMenu("Elements"); // Create Elements menu
        menuBar.add(fileMenu); // Add the file menu
        menuBar.add(elementMenu); // Add the element menu
    }

    public static void main(String[] args) {
        AddMenuBarToFrame window = new AddMenuBarToFrame("Sketcher");
        window.setBounds(30, 30, 300, 300);
        window.setVisible(true);
    }
}