我注意到我今天的节目非常奇怪。基本上我有JToolBar uder,它是带有JTable的JScrollPane。两者都在JFrame里面的JPanel里面。每个容器使用MigLayout。
现在,如果我启动应用,这是默认外观:
但是,如果我移动JToolBar并将其剪回原来的位置,现在它看起来像这样:
突然间没有国界。如果在第一个地方根本没有任何东西我会感到不安,但是改变GUI的外观根本不是很好的特征......如果你知道什么是错的,请帮助:)
CODE:
public class Gui extends JFrame {
private static final long serialVersionUID = 1L;
private JPanel mainPnl = null;
private JToolBar toolbar = null;
private Session session = null;
public Gui(Session session) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (UnsupportedLookAndFeelException e) {
} catch (ClassNotFoundException e) {
} catch (InstantiationException e) {
} catch (IllegalAccessException e) {
}
this.session = session;
setTitle("PRO2-Contact Manager v_0.1");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(800,420);
setResizable(true);
initMenu();
initMainPnl();
initToolbar();
initTable();
// KeyboardFocusManager manager =
// KeyboardFocusManager.getCurrentKeyboardFocusManager();
// manager.addKeyEventDispatcher(new MyDispatcher(aList));
setLocationRelativeTo(null);
setVisible(true);
}
private void initMenu() {
JMenuBar menu = new JMenuBar();
MenuListener ml = new MenuListener();
JMenu file = new JMenu("File");
file.setMnemonic(KeyEvent.VK_F);
menu.add(file);
JMenuItem exit = new JMenuItem("Exit");
exit.setMnemonic(KeyEvent.VK_E);
exit.addActionListener(ml);
file.add(exit);
JMenu help = new JMenu("Help");
help.setMnemonic(KeyEvent.VK_H);
menu.add(help);
JMenuItem controls = new JMenuItem("Controls");
controls.setMnemonic(KeyEvent.VK_C);
controls.addActionListener(ml);
help.add(controls);
JMenuItem about = new JMenuItem("About");
about.setMnemonic(KeyEvent.VK_A);
about.addActionListener(ml);
help.add(about);
setJMenuBar(menu);
}
private void initMainPnl(){
mainPnl = new JPanel(new MigLayout());
add(mainPnl);
}
private void initToolbar() {
toolbar = new JToolBar(JToolBar.HORIZONTAL);
toolbar.add(new JButton());
mainPnl.add(toolbar,"wrap");
}
private void initTable() {
MyTable table = new MyTable(new MyTableModel(this));
JScrollPane sp = new JScrollPane(table);
sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
mainPnl.add(sp,"w 100%, h 100%");
}}
答案 0 :(得分:0)
从技术上讲,可以将JToolBar添加到具有任何布局约束的容器中。仅当BorderLayout支持将浮动工具栏自动重新添加到容器。而不是添加到mainPanel,将其添加到contentPane:
private void initToolbar() {
toolbar = new JToolBar(JToolBar.HORIZONTAL);
toolbar.add(new JButton());
add(toolbar, BorderLayout.NORTH);
}
BTW:你的代码不能在你的上下文之外编译 - MyPanel,MyTableModel,MenuListener是其他地方都没有的本地类,而且它缺少一个main方法。为了更好地提供帮助,请考虑在未来提供SSCCE: - )