2014-08-29 2 views
2

때로는 2 개의 요소가 내 메뉴에 있고, 때로는 모두 요소가 보이지 않으면 내 창 크기를 조정해야합니다. 창 크기를 조정하면 요소가 나타납니다. 왜? 오류가 나타나면내 메뉴 바의 모든 요소를 ​​볼 수없는 이유는 무엇입니까?

//Class TextEditor start 
public class TextEditor extends JFrame{ 

private JMenuBar menuBar; 
private JMenu file,edit,format,view,help; 
private JMenuItem newFile; 
private JMenuItem exit; 

//Main method start 
public static void main(String[] args){ 
    try{ 
     UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); 
    }catch (Exception e){ 

    } 
    new TextEditor(); 
} 
//Main class end 


//Class constructor start 
private TextEditor(){ 
     super("Untitled"); 
     sendUI(this); 
     sendMenuBar(); 
    } 
//Class constructor end 

//Menu bar start// 
public void sendMenuBar(){ 
    menuBar = new JMenuBar(); 
    setJMenuBar(menuBar); 

    //File menu and Items 
    file = new JMenu(" File "); 
    newFile = new JMenuItem("New"); 
    exit = new JMenuItem("Exit"); 
    menuBar.add(file); 
    file.add(newFile); 
    file.add(exit); 

    //Edit menu and items 
    edit = new JMenu(" Edit "); 
    menuBar.add(edit); 

    //Format menu and items 
    format = new JMenu(" Format "); 
    menuBar.add(format); 

    //View menu and items 
    view = new JMenu(" View "); 
    menuBar.add(view); 

    //Help menu and items 
    help = new JMenu(" Help "); 
    menuBar.add(help); 
} 


private void sendUI(TextEditor texteditor) { 
    texteditor.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
    texteditor.setSize(700,400); 
    texteditor.setLocationRelativeTo(null); 
    texteditor.setVisible(true); 
} 

} 
//Class TextEditor end 

:

enter image description here

+2

sendMenuBar 다음에 senUI를 호출 할 수 있습니까? – StackFlowed

+0

감사합니다. 그것이 문제였습니다. –

+0

제대로 작동했다면 답을 올바른 것으로 표시하십시오. – StackFlowed

답변

0

당신은 senUI를 호출 할 필요가 : 나는 창 크기를 조정할

enter image description here

내 코드입니다 sendMenuBar의 뒤.