public class POSToolBar extends JFrame {
/**
* Launch the application.
*/
private BrowserToolBar toolBar;
public POSToolBar() {
super("POS");
Container content = getContentPane();
content.setBackground(Color.white);
toolBar = new BrowserToolBar();
content.add(toolBar, BorderLayout.NORTH);
pack();
setVisible(true);
}
}
上面的代码为我生成了一个工具栏。现在我想在每个其他摆动页面上使用这个工具栏。我继承/扩展了这个类并使用了 frame.add(new POSToolbar()) 但它向我显示了一个异常'java.lang.IllegalArgumentException:向容器添加一个窗口' 如何在我的其他摇摆页面上添加这个工具栏?