標題:
佈局元件 - FlowLayout
[打印本頁]
作者:
tonyh
時間:
2016-8-27 16:56
標題:
佈局元件 - FlowLayout
本帖最後由 tonyh 於 2016-8-27 17:52 編輯
運用 FlowLayout 佈局需留意以下事項:
1. 若容器被設為FlowLayout,被丟入的元件無法設定位置與大小,大小將依內容而改變。
2. FlowLayout 對齊方式預設為置中對齊,而物件之間的水平及垂直間距皆預設為5像素。
[attach]1739[/attach]
[attach]1740[/attach]
[attach]1741[/attach]
import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.FlowLayout;
public class Ch113 {
JFrame fm;
JButton btn1,btn2,btn3,btn4,btn5,btn6;
Ch113()
{
JButton btn1=new JButton("xxx");
//btn1.setBounds(0, 0, 100, 100);
//btn1.setSize(100, 100);
//若容器被設為FlowLayout,被丟入的元件則無法設定位置與大小,大小將依內容而改變
JButton btn2=new JButton("xxxxxxx");
JButton btn3=new JButton("xxxxxxxxxxx");
JButton btn4=new JButton("xxxxxxxxx xxxxxxx");
JButton btn5=new JButton("xxx");
JButton btn6=new JButton("x");
fm=new JFrame("FlowLayout");
fm.setBounds(100, 100, 300, 200);
fm.setVisible(true);
fm.setResizable(true);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 10)); //靠左對齊、水平間距5、垂直間距10
//new FlowLayout() 對齊方式預設為置中對齊,而物件之間的水平及垂直間距皆預設為5像素
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 Ch113();
}
}
複製代碼
作者:
李允軒
時間:
2016-8-27 17:53
import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.FlowLayout;
public class Ch01 {
JFrame fm;
JButton btn1,btn2,btn3,btn4,btn5,btn6;
Ch01()
{
JButton btn1=new JButton("xxx");
JButton btn2=new JButton("xxxxxxx");
JButton btn3=new JButton("xxxxxxxxxxx");
JButton btn4=new JButton("xxxxxxxxx xxxxxxx");
JButton btn5=new JButton("xxx");
JButton btn6=new JButton("x");
fm=new JFrame("FlowLayout");
fm.setBounds(100, 100, 300, 200);
fm.setVisible(true);
fm.setResizable(true);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 10));
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();
}
}
複製代碼
作者:
張峻瑋
時間:
2016-8-27 17:54
import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.FlowLayout;
public class Ch113 {
private JFrame fm=new JFrame("FlowLayout");
private JButton btn1,btn2,btn3,btn4,btn5,btn6;
Ch113()
{
JButton btn1=new JButton("xxx");
JButton btn2=new JButton("xxxxxxx");
JButton btn3=new JButton("xxxxxxxxxxx");
JButton btn4=new JButton("xxxxxxxxx xxxxxxx");
JButton btn5=new JButton("xxx");
JButton btn6=new JButton("x");
fm.setBounds(100, 100, 300, 200);
fm.setVisible(true);
fm.setResizable(true);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setLayout(new FlowLayout(FlowLayout.LEFT,5,10));
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 Ch113();
}
}
複製代碼
作者:
劉得恩
時間:
2016-8-27 17:54
import javax.swing.*;
import java.awt.FlowLayout;
public class Ch113 {
private JFrame fm;
private JButton x[];
Ch113()
{
x=new JButton[]{new JButton("x"),new JButton("xxxxx"),new JButton("xxxxxxxx"),new JButton("xxxxxx xxxxxx"),new JButton("xxx"),new JButton("x")};
fm=new JFrame("\u34cd\udeff\u0925");
fm.setLayout(new FlowLayout(5,10,FlowLayout.LEFT));
fm.setResizable(true);
fm.setVisible(true);
fm.setBounds(100,100,500,300);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
for(JButton i:x)
fm.add(i);
}
public static void main(String[] args)
{
new Ch113();
}
}
複製代碼
作者:
張彥承
時間:
2016-9-3 16:38
import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.FlowLayout;
public class Ch113 {
JFrame fm;
JButton btn1,btn2,btn3,btn4,btn5,btn6;
Ch113()
{
JButton btn1=new JButton("xxx");
JButton btn2=new JButton("xxxxxxx");
JButton btn3=new JButton("xxxxxxxxxxx");
JButton btn4=new JButton("xxxxxxxxx xxxxxxx");
JButton btn5=new JButton("xxx");
JButton btn6=new JButton("x");
fm=new JFrame("FlowLayout");
fm.setBounds(100, 100, 300, 200);
fm.setVisible(true);
fm.setResizable(true);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 10));
//new FlowLayout()
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 Ch100();
}
}
複製代碼
作者:
林宇翔
時間:
2016-9-24 09:09
import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.FlowLayout;
public class ch113
{
JFrame fm;
JButton btn1,btn2,btn3,btn4,btn5,btn6;
ch113()
{
JButton btn1=new JButton("xxx");
JButton btn2=new JButton("xxxxxxx");
JButton btn3=new JButton("xxxxxxxxxxx");
JButton btn4=new JButton("xxxxxxxxx xxxxxxx");
JButton btn5=new JButton("xxx");
JButton btn6=new JButton("x");
fm=new JFrame("FlowLayout");
fm.setBounds(100, 100, 300, 200);
fm.setVisible(true);
fm.setResizable(true);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 10));
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 ch113();
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2