返回列表 發帖

常用swing元件 - JButton (一)

JButton 類別的建構子
1. JButton():建立按鈕物件,按鈕上沒有顯示文字,也沒有圖片。
2. JButton(String text):建立的按鈕物件,並顯示text文字字串。
3. JButton(ImageIcon icon):建立的按鈕物件,並顯示圖片物件。
4. JButton(String text, ImageIcon icon):建立的按鈕物件,顯示text文字字串,也顯示圖片物件。

JButton 類別下的常用方法
1. void setText(String text)
  設定元件內的顯示文字。
2. void setBounds(int x, int y, int w, int h)
  設定元件的左上角座標位置與大小,其座標位置參考原點在視窗 內部的左上角,單位:像素(pixel)。
3. void setLocation(int x, int y)
  設定元件的左上角(x, y)座標。
4. void setSize(int w, int h)
  設定元件的大小(寬度, 高度) 。
5. void setVisible(boolean b)
  設定元件是否顯示。當參數b為true時,表示視窗可顯示; 若參數b為false時,表示視窗隱藏。
6. void setEnabled(boolean b)
  設定元件是否有作用可使用。
7. void setIcon(ImageIcon icon)
  設定元件內的顯示圖形物件。

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. public class Ch76 {

  4.         public static void main(String[] args) {
  5.                
  6.                 JFrame fm=new JFrame("元件配置練習");  // 創建JFrame
  7.                 JButton btn1=new JButton("按鈕一");
  8.                 JButton btn2=new JButton("按鈕二");
  9.                
  10.                 btn1.setBounds(10, 10, 175, 70);   //設定 按鈕1 的座標位置及大小
  11.                 btn1.setEnabled(false);   //設定 按鈕1 無作用
  12.                 btn2.setBounds(10, 90, 175, 70);   //設定 按鈕2 的座標位置及大小
  13.                
  14.                 fm.setBounds(100, 100, 200, 200); //設定Jframe的座標位置及大小
  15.                 fm.setVisible(true); // 顯示JFrame
  16.                 fm.setResizable(false); //設定JFrame的尺寸不能任意調整
  17.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  //設定預設的視窗關閉模式
  18.                 fm.setLayout(null); //未指定版面配置,無預設座標位置,必須在建立物件時~給予物件座標位置
  19.                 fm.add(btn1); // 在JFrame增加按鈕1
  20.                 fm.add(btn2); // 在JFrame增加按鈕2
  21.                
  22.         }

  23. }
複製代碼

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. public class Ch75 {

  4.         public static void main(String[] args) {
  5.                
  6.                 JFrame fm=new JFrame("元件配置練習");
  7.                 JButton btn1=new JButton("按鈕一");
  8.                 JButton btn2=new JButton("按鈕二");
  9.                
  10.                 btn1.setBounds(10, 10, 175, 70);
  11.                 btn1.setEnabled(false);
  12.                 btn2.setBounds(10, 90, 175, 70);
  13.                
  14.                 fm.setBounds(100, 100, 200, 200);
  15.                 fm.setVisible(true);
  16.                 fm.setResizable(false);
  17.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  18.                 fm.setLayout(null);
  19.                 fm.add(btn1);
  20.                 fm.add(btn2);
  21.                
  22.         }

  23. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. public class Ch01 {

  4.         public static void main(String[] args) {

  5.                 JFrame fm=new JFrame("元件配置練習");
  6.                 JButton b1=new JButton("按鈕一");
  7.                 JButton b2=new JButton("按鈕二");
  8.                 b1.setBounds(10, 10, 175, 70);
  9.                 b1.setEnabled(false);
  10.                 b2.setBounds(10, 90, 175, 70);
  11.                 fm.setBounds(100, 100, 200, 200);
  12.                 fm.setVisible(true);
  13.                 fm.setResizable(false);
  14.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  15.                 fm.setLayout(null);
  16.                 fm.add(b1);
  17.                 fm.add(b2);

  18.         }

  19. }
複製代碼
Allen

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. public class Ch00 {

  4.         public static void main(String[] args) {
  5.                
  6.                
  7.                 JButton btn1=new JButton("讓自己復活");
  8.                 btn1.setBounds(10, 10, 175, 70);
  9.                 btn1.setEnabled(false);
  10.                 JButton btn2=new JButton("讓自己中毒");
  11.                 btn2.setBounds(10, 90, 175, 70);
  12.                 JFrame fm=new JFrame("中毒了!");
  13.                 fm.setBounds(100, 100, 200, 200);
  14.                 fm.setVisible(true);
  15.                 fm.setResizable(false);
  16.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  17.                 fm.setLayout(null);
  18.                 fm.add(btn1);
  19.                 fm.add(btn2);
  20.                
  21.         }

  22. }
複製代碼

TOP

  1. import javax.swing.JButton;
  2. import javax.swing.JFrame;


  3. public class Ch75 {

  4.         public static void main(String[] args)
  5.         {
  6.                 JButton btn1 = new JButton("按鈕一");
  7.                 btn1.setBounds(10, 10,175, 70);
  8.                 btn1.setEnabled(false);
  9.                
  10.                 JButton btn2 = new JButton("按鈕二");
  11.                 btn2.setBounds(10, 90, 175, 70);
  12.                
  13.                 JFrame fm = new JFrame("視窗一");
  14.                 fm.setBounds(100,100,200,200);
  15.                 fm.setVisible(true);
  16.                 fm.setResizable(true);
  17.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  18.                 fm.setLayout(null);
  19.                 fm.add(btn1);
  20.                 fm.add(btn2);
  21.         }

  22. }
複製代碼

TOP

  1. import javax.swing.JButton;
  2. import javax.swing.JFrame;
  3. public class Ch73{

  4.         public static void main(String[] args) {
  5.                 JFrame fm=new JFrame();
  6.                 JButton b1=new JButton("1");
  7.                 JButton b2=new JButton("2");
  8.                 b1.setBounds(10, 10, 175, 70);
  9.                 b1.setEnabled(false);
  10.                 b2.setBounds(10, 90, 175, 70);
  11.                 fm.setTitle("My First GUI App");
  12.                 fm.setLocation(100, 100);
  13.                 fm.setSize(200, 200);
  14.                 fm.setVisible(true);
  15.                 fm.setResizable(false);
  16.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  17.                 fm.add(b1);
  18.                 fm.add(b2);
  19.         }

  20. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. public class Ch01
  4. {
  5.         public static void main(String[] args)
  6.         {
  7.                 JFrame fm=new JFrame("元件配置練習");
  8.                 JButton btn1=new JButton("按鈕一");
  9.                 JButton btn2=new JButton("按鈕二");
  10.                 btn1.setBounds(10, 10, 175, 70);
  11.                 btn1.setEnabled(false);
  12.                 btn2.setBounds(10, 90, 175, 70);
  13.                 fm.setBounds(100, 100, 200, 200);
  14.                 fm.setVisible(true);
  15.                 fm.setResizable(false);
  16.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  17.                 fm.setLayout(null);
  18.                 fm.add(btn1);
  19.                 fm.add(btn2);  
  20.         }
  21. }
複製代碼
Ivy

TOP

返回列表