1
我正在使用BoxLayout創建小程序。在這個佈局中,我有3個組件(即2個文本區域和一個按鈕)。我想設置按鈕的高度和寬度。請任何人都可以幫助我。Java - 如何使用框佈局設置組件的高度和寬度
代碼
public class parsetextdata extends Applet
{
TextArea ta1,ta2;
Button parse;
public void init()
{
this.setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
ta1 = new TextArea();
add(ta1);
parse = new Button();
parse.setLabel("parse");
parse.setBackground(Color.DARK_GRAY);
parse.setForeground(Color.WHITE);
add(parse);
ta2 = new TextArea();
ta2.setEditable(false);
ta2.setBackground(Color.GRAY);
ta2.setForeground(Color.WHITE);
add(ta2);
}
}
您是否嘗試過'parse.setPreferredSize(新尺寸(X,X))'? – fireshadow52