国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁(yè)javamenuJava Swing - 如何將菜單添加到JFrame

Java Swing - 如何將菜單添加到JFrame

我們想知道如何將菜單添加到JFrame。
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;

public class Main{
  public static void main(String[] args) {
    MainFrame window = new MainFrame(); 
    window.setBounds(30, 30, 300, 300);
    window.setVisible(true);
  }
} 

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

    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
  }

}