多次填充控件

时间:2013-10-22 16:49:30

标签: java japplet

我想使用GridBagLayout将控件填充到HORIZONTALCENTER。我尝试过使用

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);

这就是我得到的

enter image description here

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

1 个答案:

答案 0 :(得分:0)

使用

m.fill = GridBagConstraints.BOTH;