为什么不出现JToolBar?

时间:2013-10-27 23:24:11

标签: java swing oop jtoolbar

我有一个具有功能JMenu的Java项目。我正在尝试添加一个工具栏,但它没有出现。如果我在菜单栏下单击,我会得到一些我可以拖动的东西,这会创建一个空白窗口。

protected JToolBar createToolBar(){
    JToolBar t1;
    t1 = new JToolBar();

    JButton test;
    test = new JButton("text here");
    t1.add(test);

    return new JToolBar(); 
}

此代码也可能相关。

protected Container createContentPane(){
    // Create the content-pane
    JPanel contentPane = new JPanel(new BorderLayout());
    contentPane.setOpaque(true);

    // Create the toolbar
    JToolBar jt = createToolBar();
    contentPane.add(jt, BorderLayout.PAGE_START);           

    return contentPane;
}

我将不胜感激。

1 个答案:

答案 0 :(得分:2)

return new JToolBar();

需要

return t1;