標題:
佈局元件 - FlowLayout
[打印本頁]
作者:
tonyh
時間:
2020-8-31 20:25
標題:
佈局元件 - FlowLayout
本帖最後由 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();
}
}
複製代碼
作者:
黃宇瑄
時間:
2020-8-31 20:43
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Ch01 {
JFrame fm;
JButton btn1,btn2,btn3,btn4,btn5,btn6;
Ch01()
{
btn1=new JButton("xxx");
btn2=new JButton("xxxxxxxx");
btn3=new JButton("xxxxxxxxxxxxx");
btn4=new JButton("xxxxxxxx xxxxxxxx");
btn5=new JButton("xxx");
btn6=new JButton("x");
fm=new JFrame("FlowLayout");
fm.setBounds(100, 100, 580, 435);
fm.setVisible(true);
fm.setResizable(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 Ch01();
}
}
複製代碼
作者:
李沛昂
時間:
2020-8-31 20:49
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Ch00 {
JFrame fm;
JButton btn1,btn2,btn3,btn4,btn5,btn6;
Ch00()
{
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");
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 Ch00();
}
}
複製代碼
作者:
鄭楀諺
時間:
2020-9-4 20:33
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("xxxxxxxxxx");
btn4 = new JButton("xxxxxxxxx xxxxxxx");
btn5 = new JButton("xxx");
btn6 = new JButton("x");
fm = new JFrame("JPanel");
fm.setBounds(100, 100, 580, 435);
fm.setVisible(true);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 15));
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();
}
}
複製代碼
作者:
黃宇綸
時間:
2020-9-7 17:17
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Ch01 {
JFrame fm;
JButton b1,b2,b3,b4,b5,b6;
Ch01()
{
b1=new JButton("xxxxxx");
b2=new JButton("xxxxxxxxxx");
b3=new JButton("xxxxxxxxxxxxx");
b4=new JButton("xxxxxxxxxxxxxxxxxxxxx");
b5=new JButton("xxxxxxxxxxxxxxxxxx");
b6=new JButton("xxx");
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(b1);
fm.add(b2);
fm.add(b3);
fm.add(b4);
fm.add(b5);
fm.add(b6);
}
public static void main(String[] args) {
new Ch01();
}
}
複製代碼
作者:
戴嘉禾
時間:
2020-9-7 19:54
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Ch01 {
JFrame fm;
JButton btn1,btn2,btn3,btn4,btn5,btn6;
Ch01()
{
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");
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 Ch01();
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2