我想使用GridBagLayout将控件填充到HORIZONTAL
和CENTER
。我尝试过使用
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);
这就是我得到的
我希望所选区域填充到小程序中。请问如何将第二个面板填入applet?
答案 0 :(得分:0)
使用
m.fill = GridBagConstraints.BOTH;