修飾子
java.awt.GridLayout
父類別
java.lang.Object
實作介面
LayoutManager
Serializable
建構子
GridLayout()
GridLayout(int rows, int cols)
GridLayout(int rows, int cols, int hgap, int vgap)
舉例如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | import java.awt.*; import java.awt.event.*; public class GridLayoutDemo { public static void main(String[] args) { new GridLayoutDemo(); } public GridLayoutDemo() { Frame frame = new Frame( "AWTDemo" ); frame.addWindowListener( new AdapterDemo()); frame.setLayout( new GridLayout( 2 , 2 )); Button b1 = new Button( "b1" ); Button b2 = new Button( "b2" ); Button b3 = new Button( "b3" ); Button b4 = new Button( "b4" ); frame.add(b1); frame.add(b2); frame.add(b3); frame.add(b4); frame.pack(); frame.setVisible( true ); } } class AdapterDemo extends WindowAdapter { public void windowClosing(WindowEvent e) { System.exit( 0 ); } } /* 《程式語言教學誌》的範例程式 檔名:GridLayoutDemo.java 功能:示範 Java 程式 作者:張凱慶 時間:西元 2012 年 3 月 */ |
此例將 Frame 設定為 GridLayout ,並設定為 2×2 的格子數,然後建立四個按鈕放入 Frame 之中
14 15 16 17 18 19 20 21 22 | Button b1 = new Button( "b1" ); Button b2 = new Button( "b2" ); Button b3 = new Button( "b3" ); Button b4 = new Button( "b4" ); frame.add(b1); frame.add(b2); frame.add(b3); frame.add(b4); |
編譯後執行,結果如下

中英文術語對照 | |
---|---|
類別 | class |
建構子 | constructor |
方法 | method |
您可以繼續參考
排版管理員
相關目錄
Java API 分類導覽
Java 教材
首頁
參考資料
http://docs.oracle.com/javase/6/docs/api/java/awt/GridLayout.html
沒有留言:
張貼留言