Board logo

標題: 佈局元件 - FlowLayout [打印本頁]

作者: tonyh    時間: 2019-9-7 15:10     標題: 佈局元件 - FlowLayout

運用 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. }
複製代碼

作者: 蕭澧邦    時間: 2019-9-21 12:44

  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. }
複製代碼

作者: 蔡幸融    時間: 2019-9-21 14:28

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. import java.awt.FlowLayout;
  4. public class Ch115 {
  5.         
  6.         JFrame fm;
  7.         JButton btn1,btn2,btn3,btn4,btn5,btn6;
  8.         Ch115()
  9.         {
  10.                 JButton btn1=new JButton("x");
  11.                 JButton btn2=new JButton("x");
  12.                 JButton btn3=new JButton("x");
  13.                 JButton btn4=new JButton("x");
  14.                 JButton btn5=new JButton("x");
  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.                 fm.add(btn1);
  24.                 fm.add(btn2);
  25.                 fm.add(btn3);
  26.                 fm.add(btn4);
  27.                 fm.add(btn5);
  28.                 fm.add(btn6);
  29.         }
  30.         
  31.         public static void main(String[] args) {
  32.                 new Ch115();
  33.         }
  34. }
複製代碼

作者: 高睿辰    時間: 2019-9-21 15:11

  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.                 fm.add(btn1);
  24.                 fm.add(btn2);
  25.                 fm.add(btn3);
  26.                 fm.add(btn4);
  27.                 fm.add(btn5);
  28.                 fm.add(btn6);
  29.         }
  30.       
  31.         public static void main(String[] args) {
  32.                 new Ch113();
  33.         }
  34. }
複製代碼

作者: 黃宥鈞    時間: 2019-9-28 14:30

  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2