0

我想填充一个控件HORIZONTALCENTER使用 GridBagLayout。我试过使用

this.setLayout(new GridBagLayout());
GridBagConstraints m=new GridBagConstraints();
m.fill=GridBagConstraints.HORIZONTAL;
m.anchor=GridBagConstraints.PAGE_START;
m.ipady=20;
m.weightx=0.5;
m.weighty=0.001;
add(pnlHeader,m);
m.fill=GridBagConstraints.HORIZONTAL|GridBagConstraints.VERTICAL;
m.anchor=GridBagConstraints.PAGE_END;
m.gridx=0;
m.weighty=1.0;
add(pnlBody,m);

这就是我得到的

在此处输入图像描述

我希望将所选区域填充到小程序中。请问如何将第二个面板填充到小程序中?

4

1 回答 1

0

采用

m.fill = GridBagConstraints.BOTH;
于 2013-10-22T16:57:04.907 回答