国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

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
  }

}