我有一個JMenu的和我的JPanel JFrame的內部JMenu對象是不可見的
設置代碼:
public Gui(String title) {
super(title);
createGUIComponents();
pack();
this.setBackground(Color.WHITE);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setResizable(true);
this.setMinimumSize(new Dimension(180, 100));
this.setSize(new Dimension(800, 600));
this.setVisible(true);
}
private void createGUIComponents() {
Container c = this.getContentPane();
JPanel panel = new SpecialJPanel();
JMenuBar menu = new JMenuBar();
fileMenu = new JMenu("File", false);
fileMenu.add("New");
fileMenu.add("Open");
fileMenu.add("Save");
fileMenu.add("Save As");
c.add(panel, "Center");
c.add(menu, "Center");
}
每當我點擊JMenuBar上的文件菜單按鈕,什麼也不顯示。我認爲它正在被不斷更新的JPanel封鎖。有沒有什麼辦法解決這一問題?
'我認爲它被正在不斷更新的JPanel阻止 - 那麼也許你應該發佈一個合適的SSCCE,以便我們可以看到你在做什麼。如果您認爲這是問題,那麼停止更新並查看會發生什麼。 'c.add(panel,「Center」);' - 不要爲約束使用字符串文字。使用BorderLayout類中找到的適當的靜態變量。 – camickr 2013-04-29 02:14:29
爲了儘快提供更好的幫助,請發佈[SSCCE](http://sscce.org/)。 – 2013-04-29 02:56:35