我有一个使用null布局的主面板,我想在其中再添加三个面板,但我希望这三个面板在加载主面板时自动调整大小。我不能使用布局管理器,因为我将拖动这三个面板。
我试过这个代码,但它不工作
pnlGrid.setBounds(514,11, pnlMain.this.getWidth()/3, pnlMain.this.getHeight());
我也试过
pnlGrid.setPreferredSize(new Dimension(pnlMain.this.getWidth()/3, pnlMain.this.getHeight()));
但仍然不好。请帮忙。谢谢
拖动每个面板时,使用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
}