我有一个使用null布局的主面板,我想在其中添加三个面板,但我希望这三个面板在加载主面板时自动调整大小。我不能使用布局管理器,因为我将拖动这三个面板。
我试过这段代码,但它不起作用
pnlGrid.setBounds(514,11, pnlMain.this.getWidth()/3, pnlMain.this.getHeight());
我也试过
pnlGrid.setPreferredSize(new Dimension(pnlMain.this.getWidth()/3, pnlMain.this.getHeight()));
但仍然不好。请帮忙。谢谢!
答案 0 :(得分:2)
使用MigLayout并在拖动每个面板时更新ComponentRestraints
。这样你就可以准确地控制它们的位置和界限。
例如:
MigLayout layout;
public Constructor(){
layout = new MigLayout();
...
container.setLayout(layout);
}
public void onMouseDrag(JPanel panel, int newX, int newY){
layout.setComponentConstraints(panel, "pos " + newX + " " + newY + ", w 100%/3, h 100%");
container.validate(); // probably not necessary
}