返回列表 發帖

常用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 java.util.Scanner;
  2. import javax.swing.JButton;
  3. import javax.swing.JFrame;
  4. public class P1 {
  5.         public static void main(String[] args) {
  6.                 JFrame fm=new JFrame("按鈕練習");
  7.             JButton btn1=new JButton("按鈕一");
  8.             JButton btn2=new JButton("按鈕二");
  9.             btn1.setBounds(10, 10, 175, 70);
  10.             btn1.setEnabled(true);
  11.             btn2.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.setLayout(null);
  17.             fm.add(btn1);
  18.             fm.add(btn2);
  19.         }
  20. }
複製代碼

TOP

本帖最後由 余柏緯 於 2022-10-8 19:34 編輯
  1. import javax.swing.JButton;
  2. import javax.swing.JFrame;

  3. public class C507 {

  4.         public static void main(String[] args) {
  5.                 JFrame fm=new JFrame("元件配置練習");
  6.                 JButton btn1=new JButton("按鈕一");
  7.                 btn1.setBounds(10,10,175,70);
  8.                 btn1.setEnabled(false);


  9.                 JButton btn2=new JButton("按鈕二");
  10.                 btn2.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(btn1);
  17.                 fm.add(btn2);
  18.         }

  19. }
複製代碼

TOP

  1. package lol;

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

  4. public class Ch01 {

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

  19.         }

  20. }
複製代碼

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 btn1=new JButton("按鈕一");
  8.                 JButton btn2=new JButton("按鈕二");

  9.                 btn1.setBounds(10,10,175,70);
  10.                 btn1.setEnabled(false);
  11.                 btn2.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.setLayout(null);
  17.                 fm.add(btn1);
  18.                 fm.add(btn2);
  19.         }
  20. }
複製代碼

TOP

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


  3. public class Ch76 {

  4.         public static void main(String[] args) {
  5.                 JFrame fm = new JFrame("button");
  6.                 JButton b1 = new JButton("按鈕一");
  7.                 JButton b2 = new JButton("按鈕二");
  8.                
  9.                 b1.setBounds(10, 10, 175, 70);
  10.                 b1.setEnabled(false);
  11.                 b2.setBounds(10, 90, 175, 70);
  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. }
複製代碼

TOP

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


  3. public class Ch76 {

  4.         public static void main(String[] args) {
  5.                 // TODO 自動產生的方法 Stub
  6.                 JButton btn1=new JButton("按鈕一");
  7.                 JButton btn2=new JButton("按鈕二");
  8.                 btn1.setBounds(10, 10, 175, 100);
  9.                 btn1.setEnabled(false);
  10.                 btn2.setBounds(10, 90, 175, 100);
  11.                 JFrame fm=new JFrame("按鈕練習");
  12.                 fm.setBounds(100,100,200,200);
  13.                 fm.setResizable(false);
  14.                 fm.setVisible(true);
  15.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  16.                 fm.setLayout(null);
  17.                 fm.add(btn1);
  18.                 fm.add(btn2);
  19.         }

  20. }
複製代碼

TOP

  1. package ch05;

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

  4. public class ch06 {

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

  23. }
複製代碼

TOP

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

  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.JButton;
  2. import javax.swing.JFrame;
  3. public class Ch37 {

  4.         public static void main(String[] args) {
  5.     JFrame fm=new JFrame("練習");
  6.     JButton btn1=new JButton("button1");
  7.     JButton btn2=new JButton("button2");
  8.    
  9.     btn1.setBounds(1,1 ,175, 70);
  10.     btn1.setEnabled(false);
  11.         btn2.setBounds(1, 76, 175, 70);
  12.        
  13.     fm.setBounds(1, 1, 199, 199);
  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

返回列表