返回列表 發帖

常用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)
  設定元件的左上角座標位置與大小,其座標位置參考原點在視窗
內部的左上角,單位:像素(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. }
複製代碼

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


  3. public class Ch01 {

  4.         public static void main(String[] args) {      
  5.         JButton btn1=new JButton("按鈕一");
  6.         btn1.setBounds(10, 10, 220, 80);
  7.         btn1.setEnabled(false);
  8.         
  9.         JButton btn2=new JButton("按鈕二");
  10.         btn2.setBounds(10, 100, 220, 80);
  11.         
  12.                 JFrame fm=new JFrame("JButton");     
  13.         fm.setVisible(true);
  14.         fm.setBounds(250, 150, 257, 230);
  15.         fm.setResizable(false);
  16.         fm.setLayout(null);
  17.         fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  18.         fm.add(btn1);
  19.         fm.add(btn2);
  20.         }
  21. }
複製代碼

TOP

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

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

  5.                 JButton btn1=new JButton("按鈕一");
  6.                 btn1.setBounds(10, 10, 220, 80);
  7.                 btn1.setEnabled(false);

  8.                 JButton btn2=new JButton("按鈕二");
  9.                 btn2.setBounds(10, 100, 220, 80);

  10.                 JFrame fm=new JFrame("JButton");
  11.                 fm.setBounds(150, 100, 250, 300);
  12.                 fm.setVisible(true);
  13.                 fm.setResizable(false);
  14.                 fm.setLayout(null);
  15.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  16.                 fm.add(btn1);
  17.                 fm.add(btn2);
  18.         }
  19. }
複製代碼

TOP

  1. import javax.swing.*;
  2. import java.util.Random;
  3. public class Ch100 {
  4.         public static void main(String[] args) {                  
  5.       
  6.                      JButton bt1=new JButton("BUTTON1");
  7.                      bt1.setBounds(10, 10, 175, 70);
  8.                      bt1.setEnabled(false);
  9.                      
  10.                      JButton bt2=new JButton("BUTTON1");
  11.                      bt2.setBounds(10, 90, 175, 70);
  12.                      bt2.setEnabled(true);
  13.                      
  14.                  JFrame fram1=new JFrame("視窗1");
  15.                  fram1.setBounds(100, 100, 200, 200);
  16.                  fram1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  17.              fram1.setLayout(null);
  18.                  fram1.setVisible(true);
  19.                  fram1.setResizable(true);
  20.                  fram1.add(bt1);
  21.                  fram1.add(bt2);                        
  22.         }
  23. }
複製代碼

TOP

本帖最後由 李宇澤 於 2021-7-30 20:08 編輯
  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. public class Ch69 {

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

  23. }
複製代碼
李宇澤Oscar

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. public class CH07 {
  4.         public static void main(String[] args) {
  5.         
  6.         JFrame fm=new JFrame("元件配置練習");
  7.         JButton b1=new JButton("按鈕一");
  8.         JButton b2=new JButton("按鈕二");
  9.         b1.setBounds(10, 10, 160, 60);
  10.         b1.setEnabled(false);
  11.         b2.setBounds(10, 80, 160, 60);
  12.       
  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(b1);
  19.         fm.add(b2);
  20.       
  21.         }
  22. }
複製代碼
hahahahahahahaha

TOP

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

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

TOP

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

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

  22. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JButton;
  3. public class Ch08 {
  4.         public static void main(String[] args) {              
  5.                 JFrame fm=new JFrame("元件配置練習");
  6.                 JButton btn1=new JButton("按鈕一");
  7.                 JButton btn2=new JButton("按鈕二");
  8.                
  9.                 btn1.setBounds(10, 10, 220, 80);
  10.                 btn1.setEnabled(false);
  11.                 btn2.setBounds(10, 100, 220, 80);
  12.                
  13.                 fm.setBounds(150, 100, 250, 220);
  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. }
複製代碼

TOP

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

  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

返回列表