我正在尝试获得一个垂直的、顶部对齐的布局来工作。这就是我所拥有的:
JPanel pane = new JPanel();
pane.setLayout(new BoxLayout(pane, BoxLayout.Y_AXIS));
MyImagePanel panelImage = new MyImagePanel();
panelImage.setSize(400, 400);
pane.add(new JComboBox());
pane.add(panelImage);
pane.add(new JButton("1"));
pane.add(new JButton("2"));
pane.add(new JButton("3"));
JFrame frame = new JFrame("Title");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(800, 600);
frame.add(pane);
frame.pack();
frame.setVisible(true);
所有控件都出现了,但看起来在运行时在它们的顶部和底部之间应用了填充,因此它们有点垂直居中。这就是我想要的:
-----------------------------------------------------
| ComboBox | |
------------ |
| | |
| Image | |
| | |
------------ |
| Button 1 | Any additional space fills the right |
------------ |
| Button 2 | |
------------ |
| Button 3 | |
------------ |
| |
| Any additional space fills the bottom |
| |
-----------------------------------------------------
如何让 BoxLayout 做到这一点?
谢谢
- - - - - - - - - - - - - 更新 - - - - - - - - - - - - -
能够使用这个:
Box vertical = Box.createVerticalBox();
frame.add(vertical, BorderLayout.NORTH);
vertical.add(new JComboBox());
vertical.add(new JButton("1"));
...
得到我想要的。