我最初在miglayout论坛上发布了这个问题,在534次观看后没有答案,我决定在那里试一试; - )
我尝试从MigLayout白皮书中扩展“初始示例”,以便添加一个始终位于对话框底部的“确定”按钮。
不幸的是,我找到的唯一解决方案是添加一个会增长的“假面板”:
public class TestResize extends JDialog {
protected JPanel contentPane;
public TestResize() {
super((Dialog) null, "Test resize", true);
setupUI();
setContentPane(contentPane);
}
private void setupUI() {
contentPane = new JPanel(new MigLayout());
contentPane.add(new JLabel("Enter size:"), "");
contentPane.add(new JTextField(""), "grow, pushx, wrap");
contentPane.add(new JLabel("Enter weight:"), "");
contentPane.add(new JTextField(""), "grow, pushx, wrap");
// fake panel that is allowed to grow
contentPane.add(new JPanel(), "span 2, grow, pushy, wrap");
JButton okButton = new JButton("Ok");
JPanel buttonPanel = new JPanel(new MigLayout("", "[center, grow]"));
buttonPanel.add(okButton, "");
contentPane.add(buttonPanel, "dock south");
}
public static void main(String[] args) {
TestResize dialog = new TestResize();
dialog.pack();
dialog.setVisible(true);
}
}
我真的不喜欢这种方法......但是有更好的方法吗?
(看起来我不允许上传图片,但我想要的用户界面显示in my original post)
谢谢!
答案 0 :(得分:4)
如果使用显式网格构造MigLayout,则可以在两行之间使用“:push”:
new MigLayout(
"", // Layout Constraints
"[][]", // Column constraints
"[][][]:push[]"); // Row constraints
(参见cheatsheet)
的“列/行约束”部分修改强>
实际上,更好的解决方案是在前一行的末尾使用“wrap push”。然后您不需要显式设置网格中的行数:
contentPane.add(new JPanel(), "span 2, grow, pushy, wrap push");