我想填充一个控件HORIZONTAL
并CENTER
使用 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);
这就是我得到的
我希望将所选区域填充到小程序中。请问如何将第二个面板填充到小程序中?