1

我有一个使用空布局的主面板,我想在其中添加三个面板,但我希望这三个面板在加载主面板时自动调整大小。我不能使用布局管理器,因为我将拖动这三个面板。

我试过这段代码,但它不起作用

pnlGrid.setBounds(514,11, pnlMain.this.getWidth()/3, pnlMain.this.getHeight());

我也试过

pnlGrid.setPreferredSize(new Dimension(pnlMain.this.getWidth()/3, pnlMain.this.getHeight()));

但还是不好。请帮忙。谢谢!

4

1 回答 1

2

使用MigLayoutComponentRestraints在拖动每个面板时更新。这样你就可以准确地控制它们的位置和边界。

例如:

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
}
于 2012-08-25T16:27:15.757 回答