標籤:
import java.awt.*;
import javax.swing.*;
public class GridBagDemo extends JFrame {
public static void main(String args[]) {
GridBagDemo demo = new GridBagDemo();
}
public GridBagDemo() {
init();
this.setSize(600,600);
this.setVisible(true);
}
public void init() {
j1 = new JButton("開啟");
j2 = new JButton("儲存");
j3 = new JButton("另存新檔");
j4 = new JPanel();
String[] str = { "java筆記", "C#筆記", "HTML5筆記" };
j5 = new JComboBox(str);
j6 = new JTextField();
j7 = new JButton("清空");
j8 = new JList(str);
j9 = new JTextArea();
j9.setBackground(Color.PINK);//為了看出效果,設定了顏色
GridBagLayout layout = new GridBagLayout();
this.setLayout(layout);
this.add(j1);//把組件添加進jframe
this.add(j2);
this.add(j3);
this.add(j4);
this.add(j5);
this.add(j6);
this.add(j7);
this.add(j8);
this.add(j9);
GridBagConstraints s= new GridBagConstraints();//定義一個GridBagConstraints,
//是用來控制添加進的組件的顯示位置
s.fill = GridBagConstraints.BOTH;
//該方法是為了設定如果組件所在的地區比組件本身要大時的顯示情況
//NONE:不調整組件大小。
//HORIZONTAL:加寬組件,使它在水平方向上填滿其顯示地區,但是不改變高度。
//VERTICAL:加高組件,使它在垂直方向上填滿其顯示地區,但是不改變寬度。
//BOTH:使組件完全填滿其顯示地區。
s.gridwidth=1;//該方法是設定組件水平所佔用的格子數,如果為0,就說明該組件是該行的最後一個
s.weightx = 0;//該方法設定組件水平的展開幅度,如果為0就說明不展開,不為0就隨著視窗增大進行展開,0到1之間
s.weighty=0;//該方法設定組件垂直的展開幅度,如果為0就說明不展開,不為0就隨著視窗增大進行展開,0到1之間
layout.setConstraints(j1, s);//設定組件
s.gridwidth=1;
s.weightx = 0;
s.weighty=0;
layout.setConstraints(j2, s);
s.gridwidth=1;
s.weightx = 0;
s.weighty=0;
layout.setConstraints(j3, s);
s.gridwidth=0;//該方法是設定組件水平所佔用的格子數,如果為0,就說明該組件是該行的最後一個
s.weightx = 0;//不能為1,j4是佔了4個格,並且可以橫向展開,
//但是如果為1,後面行的列的格也會跟著展開,導致j7所在的列也可以展開
//所以應該是跟著j6進行展開
s.weighty=0;
layout.setConstraints(j4, s)
;s.gridwidth=2;
s.weightx = 0;
s.weighty=0;
layout.setConstraints(j5, s);
;s.gridwidth=4;
s.weightx = 1;
s.weighty=0;
layout.setConstraints(j6, s);
;s.gridwidth=0;
s.weightx = 0;
s.weighty=0;
layout.setConstraints(j7, s);
;s.gridwidth=2;
s.weightx = 0;
s.weighty=1;
layout.setConstraints(j8, s);
;s.gridwidth=5;
s.weightx = 0;
s.weighty=1;
layout.setConstraints(j9, s);
}
JButton j1;
JButton j2;
JButton j3;
JPanel j4;
JComboBox j5;
JTextField j6;
JButton j7;
JList j8;
JTextArea j9;
}
GridLayout執行個體代碼(記事本)