本帖最後由 tonyh 於 2020-8-31 20:36 編輯
運用 FlowLayout 佈局需留意以下事項:
1. 若容器被設為FlowLayout,被丟入的元件無法設定位置與大小,大小將依內容而改變。
2. FlowLayout 對齊方式預設為置中對齊,而物件之間的水平及垂直間距皆預設為5像素。
- import java.awt.FlowLayout;
- import javax.swing.JButton;
- import javax.swing.JFrame;
- public class Ch105 {
- JFrame fm;
- JButton btn1,btn2,btn3,btn4,btn5,btn6;
- Ch105()
- {
- btn1=new JButton("xxx");
- btn2=new JButton("xxxxxxx");
- btn3=new JButton("xxxxxxxxxxx");
- btn4=new JButton("xxxxxxxxx xxxxxxx");
- btn5=new JButton("xxx");
- btn6=new JButton("x");
- //btn1.setBounds(0, 0, 100, 100);
- //btn1.setSize(100, 100);
- //若容器被設為FlowLayout,被丟入的元件則無法設定位置與大小,大小將依內容而改變
- fm=new JFrame("FlowLayout");
- fm.setBounds(100, 100, 580, 435);
- fm.setVisible(true);
- fm.setLayout(new FlowLayout(FlowLayout.LEFT,5,10));
- fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- fm.add(btn1);
- fm.add(btn2);
- fm.add(btn3);
- fm.add(btn4);
- fm.add(btn5);
- fm.add(btn6);
- }
- public static void main(String[] args) {
- new Ch105();
- }
- }
複製代碼 |