返回列表 發帖

佈局元件 - FlowLayout

本帖最後由 tonyh 於 2016-8-27 17:52 編輯

運用 FlowLayout 佈局需留意以下事項:
1. 若容器被設為FlowLayout,被丟入的元件無法設定位置與大小,大小將依內容而改變。
2. FlowLayout 對齊方式預設為置中對齊,而物件之間的水平及垂直間距皆預設為5像素。



  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. import java.awt.FlowLayout;
  4. public class Ch113 {
  5.        
  6.         JFrame fm;
  7.         JButton btn1,btn2,btn3,btn4,btn5,btn6;
  8.         Ch113()
  9.         {
  10.                 JButton btn1=new JButton("xxx");
  11.                 //btn1.setBounds(0, 0, 100, 100);
  12.                 //btn1.setSize(100, 100);
  13.                 //若容器被設為FlowLayout,被丟入的元件則無法設定位置與大小,大小將依內容而改變
  14.                 JButton btn2=new JButton("xxxxxxx");
  15.                 JButton btn3=new JButton("xxxxxxxxxxx");
  16.                 JButton btn4=new JButton("xxxxxxxxx    xxxxxxx");
  17.                 JButton btn5=new JButton("xxx");
  18.                 JButton btn6=new JButton("x");
  19.                
  20.                 fm=new JFrame("FlowLayout");
  21.                 fm.setBounds(100, 100, 300, 200);
  22.                 fm.setVisible(true);
  23.                 fm.setResizable(true);
  24.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  25.                 fm.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 10));  //靠左對齊、水平間距5、垂直間距10
  26.                 //new FlowLayout() 對齊方式預設為置中對齊,而物件之間的水平及垂直間距皆預設為5像素
  27.                 fm.add(btn1);
  28.                 fm.add(btn2);
  29.                 fm.add(btn3);
  30.                 fm.add(btn4);
  31.                 fm.add(btn5);
  32.                 fm.add(btn6);
  33.         }
  34.        
  35.         public static void main(String[] args) {
  36.                 new Ch113();
  37.         }
  38. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. import java.awt.FlowLayout;
  4. public class Ch01 {
  5.         
  6.         JFrame fm;
  7.         JButton btn1,btn2,btn3,btn4,btn5,btn6;
  8.         Ch01()
  9.         {
  10.                 JButton btn1=new JButton("xxx");
  11.                
  12.                 JButton btn2=new JButton("xxxxxxx");
  13.                 JButton btn3=new JButton("xxxxxxxxxxx");
  14.                 JButton btn4=new JButton("xxxxxxxxx    xxxxxxx");
  15.                 JButton btn5=new JButton("xxx");
  16.                 JButton btn6=new JButton("x");
  17.                
  18.                 fm=new JFrame("FlowLayout");
  19.                 fm.setBounds(100, 100, 300, 200);
  20.                 fm.setVisible(true);
  21.                 fm.setResizable(true);
  22.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  23.                 fm.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 10));  
  24.                 fm.add(btn1);
  25.                 fm.add(btn2);
  26.                 fm.add(btn3);
  27.                 fm.add(btn4);
  28.                 fm.add(btn5);
  29.                 fm.add(btn6);
  30.         }
  31.         
  32.         public static void main(String[] args) {
  33.                 new Ch01();
  34.         }
  35. }
複製代碼
كخخخخخخخخخخخخخ

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. import java.awt.FlowLayout;
  4. public class Ch113 {
  5.     private JFrame fm=new JFrame("FlowLayout");
  6.     private JButton btn1,btn2,btn3,btn4,btn5,btn6;
  7.         Ch113()
  8.     {
  9.             JButton btn1=new JButton("xxx");
  10.             JButton btn2=new JButton("xxxxxxx");
  11.             JButton btn3=new JButton("xxxxxxxxxxx");
  12.             JButton btn4=new JButton("xxxxxxxxx  xxxxxxx");
  13.             JButton btn5=new JButton("xxx");
  14.             JButton btn6=new JButton("x");
  15.                 fm.setBounds(100, 100, 300, 200);
  16.             fm.setVisible(true);
  17.             fm.setResizable(true);
  18.             fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  19.             fm.setLayout(new FlowLayout(FlowLayout.LEFT,5,10));
  20.         fm.add(btn1);
  21.         fm.add(btn2);
  22.         fm.add(btn3);
  23.         fm.add(btn4);
  24.         fm.add(btn5);
  25.         fm.add(btn6);
  26.     }
  27.         public static void main(String[] args) {
  28.                 new Ch113();
  29.         }

  30. }
複製代碼

TOP

  1. import javax.swing.*;
  2. import java.awt.FlowLayout;
  3. public class Ch113 {

  4.         private JFrame fm;
  5.         private JButton x[];
  6.         Ch113()
  7.         {
  8.                 x=new JButton[]{new JButton("x"),new JButton("xxxxx"),new JButton("xxxxxxxx"),new JButton("xxxxxx xxxxxx"),new JButton("xxx"),new JButton("x")};
  9.                 fm=new JFrame("\u34cd\udeff\u0925");
  10.                 fm.setLayout(new FlowLayout(5,10,FlowLayout.LEFT));
  11.                 fm.setResizable(true);
  12.                 fm.setVisible(true);
  13.                 fm.setBounds(100,100,500,300);
  14.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  15.                 for(JButton i:x)
  16.                         fm.add(i);
  17.         }
  18.         public static void main(String[] args)
  19.         {
  20.                 new Ch113();
  21.         }

  22. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. import java.awt.FlowLayout;
  4. public class Ch113 {
  5.         
  6.         JFrame fm;
  7.         JButton btn1,btn2,btn3,btn4,btn5,btn6;
  8.         Ch113()
  9.         {
  10.                 JButton btn1=new JButton("xxx");   
  11.                 JButton btn2=new JButton("xxxxxxx");
  12.                 JButton btn3=new JButton("xxxxxxxxxxx");
  13.                 JButton btn4=new JButton("xxxxxxxxx    xxxxxxx");
  14.                 JButton btn5=new JButton("xxx");
  15.                 JButton btn6=new JButton("x");
  16.                
  17.                 fm=new JFrame("FlowLayout");
  18.                 fm.setBounds(100, 100, 300, 200);
  19.                 fm.setVisible(true);
  20.                 fm.setResizable(true);
  21.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  22.                 fm.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 10));  
  23.                 //new FlowLayout()
  24.                 fm.add(btn1);
  25.                 fm.add(btn2);
  26.                 fm.add(btn3);
  27.                 fm.add(btn4);
  28.                 fm.add(btn5);
  29.                 fm.add(btn6);
  30.         }
  31.         
  32.         public static void main(String[] args) {
  33.                 new Ch100();
  34.         }
  35. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. import java.awt.FlowLayout;
  4. public class ch113
  5. {
  6.         JFrame fm;
  7.     JButton btn1,btn2,btn3,btn4,btn5,btn6;
  8.     ch113()
  9.     {
  10.            
  11.             JButton btn1=new JButton("xxx");
  12.             JButton btn2=new JButton("xxxxxxx");
  13.             JButton btn3=new JButton("xxxxxxxxxxx");
  14.             JButton btn4=new JButton("xxxxxxxxx    xxxxxxx");
  15.             JButton btn5=new JButton("xxx");
  16.             JButton btn6=new JButton("x");
  17.             
  18.             fm=new JFrame("FlowLayout");
  19.             fm.setBounds(100, 100, 300, 200);
  20.             fm.setVisible(true);
  21.             fm.setResizable(true);
  22.             fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  23.             fm.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 10));  
  24.             fm.add(btn1);
  25.             fm.add(btn2);
  26.             fm.add(btn3);
  27.             fm.add(btn4);
  28.             fm.add(btn5);
  29.             fm.add(btn6);
  30.     }
  31.    
  32.     public static void main(String[] args)
  33.     {
  34.             new ch113();
  35.     }
  36.    
  37. }
複製代碼

TOP

返回列表