我是 MigLayout 的新手。我正在尝试创建与此类似的布局:
有一行等间距的按钮,后面是一个列表,该列表跨越所有列并增长以填充可用的垂直空间,最后一行包含更多控件。
我可以毫不费力地获得前两行。
但是,当我添加最后一行的内容时,MigLayout(正确地)尝试保留前两行的列。我留下了这样的东西:
最后一行的标签和微调器扩展了列的宽度,我在第一行留下了不均匀的间隙。
有没有办法告诉 MigLayout 我想忘记迄今为止建立的行/列并“重新开始”,或者这里的解决方案是创建嵌套布局?
这是一个完整的示例面板。
public class TestPanel extends JPanel {
JButton button1 = new JButton("Button 1");
JButton button2 = new JButton("Button 2");
JButton button3 = new JButton("Button 3");
JButton button4 = new JButton("Button 4");
JButton button5 = new JButton("Button 5");
JList list = new JList(new String[]{"some", "fake", "data"});
JLabel label = new JLabel("this is my long label");
JSpinner spinner = new JSpinner();
JCheckBox checkbox = new JCheckBox("Check me");
public TestPanel() {
initComponents();
}
private void initComponents() {
setLayout(new MigLayout());
add(button1);
add(button2);
add(button3);
add(button4);
add(button5, "wrap");
add(list, "span, growx, growy, wrap");
// without these 3 lines, the row of buttons are equally spaced
// adding the long label extends the width of the first column
add(label);
add(spinner);
add(checkbox, "span, align right");
}
}