返回列表 發帖

常用swing元件 - JButton (一)

本帖最後由 tonyh 於 2015-5-9 14:23 編輯

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)
  設定元件的左上角座標位置與大小,其座標位置參考原點在視窗 內部的左上角,單位:像素(pixed)。
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. package ch70;

  2. import javax.swing.JFrame;
  3. import javax.swing.JButton;
  4. public class ch70 {

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

  24. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

  5.         public static void main(String[] args)
  6.         {   
  7.                 JFrame jf=new JFrame("***元件配置練習***");
  8.                 JButton jb1=new JButton("按鈕一");
  9.                 JButton jb2=new JButton("按鈕二");
  10.                
  11.                 jb1.setBounds(10, 10, 175, 50);
  12.                 jb2.setBounds(10, 100, 175, 50);
  13.                
  14.                 jf.setBounds(100, 100, 200, 200);
  15.                 jf.setVisible(true);
  16.                 jf.setResizable(false);
  17.                 jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  18.                
  19.                 jf.setLayout(null);
  20.                 jf.add(jb1);           
  21.                 jf.add(jb2);
  22.         }
  23. }
複製代碼

TOP

本帖最後由 許逸群 於 2015-5-2 15:09 編輯
  1. package ch70;
  2. import javax.swing.JFrame;
  3. import javax.swing.JButton;
  4. public class ch70
  5. {

  6.         public static void main(String[] args)
  7.         {
  8.         JFrame f1=new JFrame("視窗一");
  9.         JButton b1=new JButton("按鈕一");
  10.         JButton b2=new JButton("按鈕二");

  11.         b1.setBounds(10,10,175,70);
  12.         b1.setEnabled(false);
  13.         b2.setBounds(10,90,175,70);
  14.         
  15.         f1.setBounds(100,100,200,200);
  16.         f1.setVisible(true);
  17.         f1.setResizable(false);
  18.         f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  19.         f1.setLayout(null);
  20.         f1.add(b1);
  21.         f1.add(b2);
  22.      
  23.         }

  24. }
複製代碼

TOP

  1. package ch01;
  2. import javax.swing.JFrame;
  3. import javax.swing.JButton;
  4. public class ch01 {

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

  23. }
複製代碼

TOP

  1. package ch01;
  2. import javax.swing.JFrame;
  3. import javax.swing.JButton;
  4. public class ch01 {

  5.         public static void main(String[] args)
  6.         {
  7.         JFrame f1=new JFrame("視窗一");
  8.         JButton b1=new JButton("按鈕一");
  9.         JButton b2=new JButton("按鈕二");

  10.         b1.setBounds(10,10,175,70);
  11.         b1.setEnabled(false);
  12.         b2.setBounds(10,90,175,70);
  13.         
  14.         f1.setBounds(100,100,200,200);
  15.         f1.setVisible(true);
  16.         f1.setResizable(false);
  17.         f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  18.         f1.setLayout(null);
  19.         f1.add(b1);
  20.         f1.add(b2);
  21.      
  22.         }

  23. }
複製代碼

TOP

返回列表