Board logo

標題: 常用swing元件 - JButton (一) [打印本頁]

作者: tonyh    時間: 2018-12-8 14:10     標題: 常用swing元件 - JButton (一)

本帖最後由 tonyh 於 2021-7-29 16:09 編輯

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. 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("元件配置練習");
  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. }
複製代碼

作者: 蕭澧邦    時間: 2018-12-8 14:24

  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("元件配置練習");
  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. }
複製代碼

作者: 黃宥鈞    時間: 2018-12-8 14:27

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

  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. }
複製代碼

作者: 高睿辰    時間: 2018-12-8 14:34

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


  4.                 public static void main(String[] args) {
  5.                        
  6.                 JFrame fm1=new JFrame("岸道你手痠");
  7.                 JButton btn1=new JButton("按鈕1");
  8.                 JButton btn2=new JButton("按鈕2");
  9.                
  10.                 btn1.setBounds(10, 10, 100, 50);
  11.                 btn1.setEnabled(false);
  12.                 btn2.setBounds(10, 70, 100, 50);

  13.                 fm1.setBounds(100,100,200,200);
  14.                 fm1.setVisible(true);
  15.                 fm1.setResizable(false);
  16.                 fm1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  17.                 fm1.setLayout(null);
  18.                 fm1.add(btn1);
  19.                 fm1.add(btn2);
  20.                
  21.         }

  22. }
複製代碼

作者: 莊旻叡    時間: 2018-12-8 14:35

  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("元件配置練習");
  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. }
複製代碼

作者: 譚暐霖    時間: 2018-12-12 16:57

  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("元件配置練習");
  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. }
複製代碼

作者: 蔡幸融    時間: 2018-12-15 13:20

  1. import javax.swing.JButton;
  2. import javax.swing.JFrame;
  3. public class Ch76 {
  4.                 public static void main(String[] args) {
  5.                 JButton bn1=new JButton("button1");
  6.                 bn1.setBounds(10, 10, 220, 70);
  7.             bn1.setEnabled(false);
  8.                
  9.                 JButton bn2=new JButton("button2");
  10.                 bn2.setBounds(10, 90, 220, 70);
  11.                
  12.             JFrame fm=new JFrame("Button");
  13.             fm.setBounds(100, 100, 250, 200);
  14.             fm.setVisible(true);
  15.             fm.setResizable(false);
  16.             fm.setLayout(null);
  17.             fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  18.             fm.add(bn1);
  19.             fm.add(bn2);
  20.         }

  21. }
複製代碼





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