返回列表 發帖

常用swing元件 - JButton (一)

本帖最後由 tonyh 於 2016-1-16 16: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. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. public class ch77 {

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

  1. package q;

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

  5.         public static void main(String[] args)
  6.         {
  7.                
  8.                 JFrame fm=new JFrame("按按鈕遊戲!!");
  9.                 JButton btn1=new JButton("不給你按");
  10.                 JButton btn2=new JButton("你敢按?");
  11.                
  12.                 btn1.setBounds(10, 10, 175, 70);
  13.                 btn1.setEnabled(false);
  14.                 btn2.setBounds(10, 90, 175, 70);
  15.                
  16.                 fm.setBounds(100, 100, 200, 200);
  17.                 fm.setVisible(true);
  18.                 fm.setResizable(false);
  19.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  20.                 fm.setLayout(null);
  21.                 fm.add(btn1);
  22.                 fm.add(btn2);
  23.                
  24.         }

  25. }
複製代碼

TOP

本帖最後由 劉得恩 於 2016-1-16 16:57 編輯
  1. import javax.swing.*;
  2. public class Ch77{
  3.     public static void main(String args[])
  4.     {
  5.         JFrame f1=new JFrame("\ufedd\u0aed A\u0303\u0310\u3300");
  6.         f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  7.         f1.setVisible(true);
  8.         f1.setResizable(false);
  9.         f1.setLayout(null);
  10.         f1.setBounds(100,100,500,500);
  11.         JButton btn1=new JButton("1"),btn2=new JButton("2");
  12.         btn1.setBounds(200,200,120,120);
  13.        btn1.setEnabled(false);
  14.         btn2.setBounds(200,300,100,100);
  15.         f1.add(btn1);
  16.         f1.add(btn2);


  17.     }
  18. }
複製代碼

TOP

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

TOP

  1. import javax.swing.*;
  2. public class Ch77 {

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

  22. }
複製代碼
كخخخخخخخخخخخخخ

TOP

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

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

TOP

返回列表