標題:
常用swing元件 - JButton (一)
[打印本頁]
作者:
tonyh
時間:
2021-7-30 19:27
標題:
常用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)
設定元件內的顯示圖形物件。
import javax.swing.JFrame;
import javax.swing.JButton;
public class Ch76 {
public static void main(String[] args) {
JFrame fm=new JFrame("元件配置練習");
JButton btn1=new JButton("按鈕一");
JButton btn2=new JButton("按鈕二");
btn1.setBounds(10, 10, 175, 70);
btn1.setEnabled(false);
btn2.setBounds(10, 90, 175, 70);
fm.setBounds(100, 100, 200, 200);
fm.setVisible(true);
fm.setResizable(false);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setLayout(null);
fm.add(btn1);
fm.add(btn2);
}
}
複製代碼
作者:
董宸佑
時間:
2021-7-30 19:52
import javax.swing.JButton;
import javax.swing.JFrame;
public class Ch01 {
public static void main(String[] args) {
JButton btn1=new JButton("按鈕一");
btn1.setBounds(10, 10, 220, 80);
btn1.setEnabled(false);
JButton btn2=new JButton("按鈕二");
btn2.setBounds(10, 100, 220, 80);
JFrame fm=new JFrame("JButton");
fm.setVisible(true);
fm.setBounds(250, 150, 257, 230);
fm.setResizable(false);
fm.setLayout(null);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.add(btn1);
fm.add(btn2);
}
}
複製代碼
作者:
沈子晏
時間:
2021-7-30 19:54
import javax.swing.JButton;
import javax.swing.JFrame;
public class Ch004 {
public static void main(String[] args) {
JButton btn1=new JButton("按鈕一");
btn1.setBounds(10, 10, 220, 80);
btn1.setEnabled(false);
JButton btn2=new JButton("按鈕二");
btn2.setBounds(10, 100, 220, 80);
JFrame fm=new JFrame("JButton");
fm.setBounds(150, 100, 250, 300);
fm.setVisible(true);
fm.setResizable(false);
fm.setLayout(null);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.add(btn1);
fm.add(btn2);
}
}
複製代碼
作者:
陳宥穎
時間:
2021-7-30 19:54
import javax.swing.*;
import java.util.Random;
public class Ch100 {
public static void main(String[] args) {
JButton bt1=new JButton("BUTTON1");
bt1.setBounds(10, 10, 175, 70);
bt1.setEnabled(false);
JButton bt2=new JButton("BUTTON1");
bt2.setBounds(10, 90, 175, 70);
bt2.setEnabled(true);
JFrame fram1=new JFrame("視窗1");
fram1.setBounds(100, 100, 200, 200);
fram1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fram1.setLayout(null);
fram1.setVisible(true);
fram1.setResizable(true);
fram1.add(bt1);
fram1.add(bt2);
}
}
複製代碼
作者:
李宇澤
時間:
2021-7-30 19:56
本帖最後由 李宇澤 於 2021-7-30 20:08 編輯
import javax.swing.JFrame;
import javax.swing.JButton;
public class Ch69 {
public static void main(String[] args) {
JFrame n=new JFrame("元件配置練習");
JButton button1=new JButton("按鈕一");
JButton button2=new JButton("按鈕二");
button1.setBounds(10, 10, 175, 70);
button1.setEnabled(false);
button2.setBounds(10, 90, 175, 70);
n.setBounds(100, 100, 200, 200);
n.setVisible(true);
n.setResizable(false);
n.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
n.setLayout(null);
n.add(button1);
n.add(button2);
}
}
複製代碼
作者:
黃宥華
時間:
2021-7-30 19:58
import javax.swing.JFrame;
import javax.swing.JButton;
public class CH07 {
public static void main(String[] args) {
JFrame fm=new JFrame("元件配置練習");
JButton b1=new JButton("按鈕一");
JButton b2=new JButton("按鈕二");
b1.setBounds(10, 10, 160, 60);
b1.setEnabled(false);
b2.setBounds(10, 80, 160, 60);
fm.setBounds(100, 100, 200, 200);
fm.setVisible(true);
fm.setResizable(false);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setLayout(null);
fm.add(b1);
fm.add(b2);
}
}
複製代碼
作者:
劉愷鈞
時間:
2021-7-30 19:58
import javax.swing.JButton;
import javax.swing.JFrame;
public class Ch01 {
public static void main(String args[])
{
JFrame f=new JFrame("元件配置練習");
JButton b1=new JButton("按鈕一");
JButton b2=new JButton("按鈕二");
f.setBounds(100,100,220,220);
f.setVisible(true);
f.setResizable(false);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setLayout(null);
f.add(b1);
f.add(b2);
b1.setBounds(10, 10, 175, 70);
b1.setEnabled(false);
b2.setBounds(10, 90, 175, 70);
}
}
複製代碼
作者:
林政瑜
時間:
2021-7-30 19:59
import javax.swing.JButton;
import javax.swing.JFrame;
public class Ch02 {
public static void main(String[] args) {
JFrame fm=new JFrame("按鈕練習");
JButton b1=new JButton("按鈕一");
JButton b2=new JButton("按鈕二");
b1.setBounds(10, 10, 175, 70);
b1.setEnabled(false);
b2.setBounds(10, 90, 175, 70);
fm.setBounds(100, 100, 200, 200);
fm.setVisible(true);
fm.setResizable(false);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.add(b1);
fm.add(b2);
fm.setLayout(null);
}
}
複製代碼
作者:
孫嘉駿
時間:
2021-7-30 20:02
import javax.swing.JFrame;
import javax.swing.JButton;
public class Ch08 {
public static void main(String[] args) {
JFrame fm=new JFrame("元件配置練習");
JButton btn1=new JButton("按鈕一");
JButton btn2=new JButton("按鈕二");
btn1.setBounds(10, 10, 220, 80);
btn1.setEnabled(false);
btn2.setBounds(10, 100, 220, 80);
fm.setBounds(150, 100, 250, 220);
fm.setVisible(true);
fm.setResizable(false);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setLayout(null);
fm.add(btn1);
fm.add(btn2);
}
}
複製代碼
作者:
蔡忻霓
時間:
2021-7-30 20:11
import javax.swing.JFrame;
import javax.swing.JButton;
public class JPA05 {
public static void main(String[] args) {
JFrame fm=new JFrame("元件配置練習");
JButton btn1=new JButton("按鈕一");
JButton btn2=new JButton("按鈕二");
btn1.setBounds(10, 10, 175, 70);
btn1.setEnabled(false);
btn2.setBounds(10, 90, 175, 70);
fm.setBounds(100, 100, 200, 200);
fm.setVisible(true);
fm.setResizable(false);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setLayout(null);
fm.add(btn1);
fm.add(btn2);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2