網路城邦
RSS Feed Link 部落格聯播

文章數:8
BoxLayout
知識學習隨堂筆記 2015/10/25 10:59:16

 // 直接定義JFrameLayout ManagerFlowLayout

    this.setLayout(new FlowLayout());

 

    JPanel jpanel = new JPanel();

 

    // 定義Layout ManagerBoxLayout

    // 由左至右配置

    jpanel.setLayout(new BoxLayout(jpanel, BoxLayout.X_AXIS));

 

    jpanel.add(new JButton("Button 1"));

 

    // 建立Box垂直方向固定高度之區域

    jpanel.add(Box.createVerticalStrut(50));

 

    jpanel.add(new JButton("Button 2"));

 

    this.add(jpanel);

最新創作
BoxLayout
2015/10/25 10:59:16 |瀏覽 122 回應 0 推薦 0 引用 0
錦瑟
2014/11/17 08:22:26 |瀏覽 131 回應 0 推薦 0 引用 0
WinJS
2014/10/19 19:29:15 |瀏覽 141 回應 0 推薦 0 引用 0
SideMenu by autoit
2014/08/24 14:23:51 |瀏覽 390 回應 0 推薦 0 引用 0
開機後自動登入
2013/07/10 18:13:44 |瀏覽 215 回應 0 推薦 0 引用 0