Board logo

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

作者: tonyh    時間: 2017-9-15 20:39     標題: 佈局元件 - BorderLayout

本帖最後由 tonyh 於 2019-9-7 14:53 編輯

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. import java.awt.BorderLayout;

  4. public class Ch115 {
  5.        
  6.         JFrame fm;
  7.         JButton btn1,btn2,btn3,btn4,btn5,btn6;
  8.         Ch115()
  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("BorderLayout");
  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 BorderLayout(5,5));
  23.                 //如果沒有設Layout,則預設值就是 BorderLayout
  24.                 //BorderLayout 預設物件之間的水平及垂直距離為0像素
  25.                 fm.add(btn1, BorderLayout.NORTH);
  26.                 fm.add(btn2, BorderLayout.SOUTH);
  27.                 fm.add(btn3, BorderLayout.WEST);
  28.                 fm.add(btn4, BorderLayout.CENTER);
  29.                 fm.add(btn5, BorderLayout.EAST);
  30.                 //fm.add(btn6, BorderLayout.EAST);
  31.         }
  32.        
  33.         public static void main(String[] args) {
  34.                 new Ch115();
  35.         }
  36. }
複製代碼

作者: 陳思惟    時間: 2017-9-15 21:00

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. import java.awt.BorderLayout;

  4. public class Ch115 {
  5.         
  6.         JFrame fm;
  7.         JButton btn1,btn2,btn3,btn4,btn5,btn6;
  8.         Ch115()
  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("BorderLayout");
  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 BorderLayout(5,5));
  23.                 //如果沒有設Layout,則預設值就是 BorderLayout
  24.                 //BorderLayout 預設物件之間的水平及垂直距離為0像素
  25.                 fm.add(btn1, BorderLayout.NORTH);
  26.                 fm.add(btn2, BorderLayout.SOUTH);
  27.                 fm.add(btn3, BorderLayout.WEST);
  28.                 fm.add(btn4, BorderLayout.CENTER);
  29.                 fm.add(btn5, BorderLayout.EAST);
  30.                 //fm.add(btn6, BorderLayout.EAST);
  31.         }
  32.         
  33.         public static void main(String[] args) {
  34.                 new Ch115();
  35.         }
  36. }
複製代碼

作者: 黃璽安    時間: 2017-9-15 21:05

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

作者: 洪振庭    時間: 2017-9-15 21:05

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. import java.awt.BorderLayout;
  4. public class Ch113 {
  5.         
  6.         JFrame fm;
  7.         JButton btn1,btn2,btn3,btn4,btn5,btn6;
  8.         Ch113()
  9.         {
  10.                 JButton btn1=new JButton("x      456            x");
  11.                 JButton btn3=new JButton("     ______/*  ____     ");
  12.                 JButton btn4=new JButton("_____  _______________");
  13.                 JButton btn5=new JButton("     1    1   1     ");
  14.                 JButton btn6=new JButton("     1    1  4 1  4    ");
  15.                 JButton btn2=new JButton("     1    8   7  12      ");
  16.                
  17.                 fm=new JFrame("GridLayout");
  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 BorderLayout(4, 0));
  23.                 fm.add(btn1,BorderLayout.CENTER);
  24.                 fm.add(btn2,BorderLayout.SOUTH);
  25.                 fm.add(btn3,BorderLayout.EAST);
  26.                 fm.add(btn4,BorderLayout.NORTH);
  27.                 fm.add(btn5,BorderLayout.WEST);
  28.         }
  29.         
  30.         public static void main(String[] args) {
  31.                 new Ch113();
  32.         }
  33. }
複製代碼

作者: 曾挺桂    時間: 2017-9-22 20:31

本帖最後由 曾挺桂 於 2017-9-29 21:05 編輯
  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. import java.awt.BorderLayout;

  4. public class Ch115 {
  5.         
  6.         JFrame fm;
  7.         JButton btn1,btn2,btn3,btn4,btn5,btn6;
  8.         Ch115()
  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("BorderLayout");
  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 BorderLayout(5,5));
  23.                 fm.add(btn1, BorderLayout.NORTH);
  24.                 fm.add(btn2, BorderLayout.SOUTH);
  25.                 fm.add(btn3, BorderLayout.WEST);
  26.                 fm.add(btn4, BorderLayout.CENTER);
  27.                 fm.add(btn5, BorderLayout.EAST);
  28.                 //fm.add(btn6, BorderLayout.EAST);
  29.         }
  30.         
  31.         public static void main(String[] args) {
  32.                 new Ch115();
  33.         }
  34. }
複製代碼

作者: 李知易    時間: 2017-9-29 20:11

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. import java.awt.BorderLayout;
  4. public class Ch105 {
  5.         
  6.         JFrame fm;
  7.         JButton btn1,btn2,btn3,btn4,btn5,btn6;
  8.         Ch105()
  9.         {
  10.                 JButton btn1=new JButton("x      456            x");
  11.                 JButton btn3=new JButton("     ______/*  ____     ");
  12.                 JButton btn4=new JButton("_____  _______________");
  13.                 JButton btn5=new JButton("     1    1   1     ");
  14.                 JButton btn6=new JButton("     1    1  4 1  4    ");
  15.                 JButton btn2=new JButton("     1    8   7  12      ");
  16.                
  17.                 fm=new JFrame("GridLayout");
  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 BorderLayout(4, 0));
  23.                 fm.add(btn1,BorderLayout.CENTER);
  24.                 fm.add(btn2,BorderLayout.SOUTH);
  25.                 fm.add(btn3,BorderLayout.EAST);
  26.                 fm.add(btn4,BorderLayout.NORTH);
  27.                 fm.add(btn5,BorderLayout.WEST);
  28.         }
  29.         
  30.         public static void main(String[] args) {
  31.                 new Ch105();
  32.         }
  33. }
複製代碼





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