看不到菜单栏

时间:2014-01-23 11:39:11

标签: java jmenubar

我写的代码没有显示菜单栏,知道我该怎么办?

this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//What happens on close.
this.setSize(1100, 750);//Initial size of the frame.

menuBar = new MenuBar();

east = new EastPanel();
central = new CentralPanel();
south = new SouthPanel();

//Add the menu bar to the frame.
this.setJMenuBar(menuBar.getComposition()); 

//Frame's other components.
this.add(central.getCentralPanel());
//this.add(msBoard.getMessagesBoard(), BorderLayout.SOUTH);
this.add(east.getEastPanel(), BorderLayout.EAST);
this.add(south.getSouthPanel(), BorderLayout.SOUTH);
//this.add(menuBar);
//Load the card images.
//cards = new CardImages();
//cards.loadCards();

//Initialize cardsPerPlayer list.
//cardsPerPlayer = new ArrayList<ImagePanel>();

this.setVisible(true);

其中getComposition是

public JMenuBar getComposition(){
    return this.Composition;
}

和Composition是私人JMenuBar

2 个答案:

答案 0 :(得分:1)

可能是因为您没有向此menubar添加任何内容。

在eclipse中,当我添加了菜单栏(使用构建器)而没有任何项目时我没有看到它但是在我向菜单栏添加菜单之后它会起作用。

答案 1 :(得分:1)

添加MenuBar是不够的。您应该将其附加到当前JFrame对象 还要确保在其中添加一些菜单项。

示例:

frame.setJMenuBar(theJMenuBar);