0

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

これは私が得るものです

ここに画像の説明を入力

選択した領域をアプレットに埋めたい。2 番目のパネルをアプレットに入力するにはどうすればよいですか?

4

1 に答える 1

0

使用する

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