Board logo

標題: 常用swing元件 - JLabel [打印本頁]

作者: tonyh    時間: 2021-7-30 20:24     標題: 常用swing元件 - JLabel

JLabel 類別的建構子
1. JLabel():建立標籤物件,標籤上沒有顯示文字,也沒有圖片。
2. JLabel(String text):建立的標籤物件,並顯示text文字字串。
3. JLabel(ImageIcon icon):建立的標籤物件,並顯示圖片物件。
4. JLabel(String text, int align):參數align是標籤文字對齊的方式,對齊方式有JLable.LEFT、JLable.RIGHT、JLable.CENTER。
5. JLabel(String text, ImageIcon icon, int align):建立有文字、圖片的標籤物件,圖片會緊接在文字的前面,連同文字一起設定對齊方式。

JLabel 類別下的常用方法
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.JLabel;
  3. public class Ch78 {

  4.         public static void main(String[] args) {
  5.                
  6.                 JFrame fm=new JFrame("元件配置練習");
  7.                 JLabel lb1=new JLabel("預設");
  8.                 JLabel lb2=new JLabel("靠左",JLabel.LEFT);
  9.                 JLabel lb3=new JLabel("置中",JLabel.CENTER);
  10.                 JLabel lb4=new JLabel("靠右",JLabel.RIGHT);
  11.                 JLabel lb5=new JLabel("其他");
  12.                
  13.                 lb1.setBounds(8, 0, 180, 30);
  14.                 lb2.setBounds(8, 35, 180, 30);
  15.                 lb3.setBounds(8, 70, 180, 30);
  16.                 lb4.setBounds(8, 105, 180, 30);
  17.                 lb5.setBounds(50, 140, 100, 30);
  18.                        
  19.                 fm.setBounds(100, 100, 200, 200);
  20.                 fm.setVisible(true);
  21.                 fm.setResizable(false);
  22.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  23.                 fm.setLayout(null);
  24.                 fm.add(lb1);
  25.                 fm.add(lb2);
  26.                 fm.add(lb3);
  27.                 fm.add(lb4);
  28.                 fm.add(lb5);

  29.         }

  30. }
複製代碼

作者: 李宇澤    時間: 2021-7-30 20:40

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. public class Ch71 {

  4.         public static void main(String[] args) {
  5.                
  6.                 JFrame n=new JFrame("元件配置練習");
  7.                 JLabel label1=new JLabel("預設");
  8.                 JLabel label2=new JLabel("靠左",JLabel.LEFT);
  9.                 JLabel label3=new JLabel("置中",JLabel.CENTER);
  10.                 JLabel label4=new JLabel("靠右",JLabel.RIGHT);
  11.                 JLabel label5=new JLabel("其他");
  12.                
  13.                 label1.setBounds(8, 0, 180, 30);
  14.                 label2.setBounds(8, 35, 180, 30);
  15.                 label3.setBounds(8, 70, 180, 30);
  16.                 label4.setBounds(8, 105, 180, 30);
  17.                 label5.setBounds(50, 140, 100, 30);
  18.                        
  19.                 n.setBounds(100, 100, 200, 200);
  20.                 n.setVisible(true);
  21.                 n.setResizable(false);
  22.                 n.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  23.                 n.setLayout(null);
  24.                 n.add(label1);
  25.                 n.add(label2);
  26.                 n.add(label3);
  27.                 n.add(label4);
  28.                 n.add(label5);

  29.         }

  30. }
複製代碼

作者: 劉愷鈞    時間: 2021-7-30 20:40

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

  3. public class Ch01 {
  4.         public static void main(String args[])
  5.         {
  6.                 JLabel l1=new JLabel("預設");
  7.                 l1.setBounds(10, 10, 180, 20);
  8.                
  9.                 JLabel l2=new JLabel("靠左",JLabel.LEFT);
  10.                 l2.setBounds(10, 40, 180, 20);
  11.                
  12.                 JLabel l3=new JLabel("置中",JLabel.CENTER);
  13.                 l3.setBounds(10, 70, 180, 20);
  14.                
  15.                 JLabel l4=new JLabel("靠右",JLabel.RIGHT);
  16.                 l4.setBounds(10, 100, 180, 20);
  17.                
  18.                 JLabel l5=new JLabel("其他");
  19.                 l5.setBounds(80, 100, 180, 50);
  20.                            
  21.             JFrame f=new JFrame("JLabel");
  22.             f.setBounds(100,100,250,250);
  23.             f.setVisible(true);
  24.             f.setResizable(false);
  25.             f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  26.             f.setLayout(null);
  27.             f.add(l1);
  28.             f.add(l2);
  29.             f.add(l3);
  30.             f.add(l4);
  31.             f.add(l5);
  32.             
  33.         }
  34. }
複製代碼

作者: 陳宥穎    時間: 2021-7-30 20:41

  1. import javax.swing.*;
  2. public class Ch100 {
  3.         public static void main(String[] args) {
  4.                
  5.                 JFrame fram1=new JFrame("視窗");
  6.                 JLabel lb1=new JLabel("預設");
  7.                 JLabel lb2=new JLabel("靠左",JLabel.LEFT);
  8.                 JLabel lb3=new JLabel("置中",JLabel.CENTER);
  9.                 JLabel lb4=new JLabel("靠右",JLabel.RIGHT);
  10.                 JLabel lb5=new JLabel("其他");
  11.                
  12.                 lb1.setBounds(10, 0, 180, 30);
  13.                 lb2.setBounds(10, 30, 180, 30);
  14.                 lb3.setBounds(10, 60, 180, 30);
  15.                 lb4.setBounds(10, 90, 180, 30);
  16.                 lb5.setBounds(50, 140, 100, 30);
  17.                        
  18.                 fram1.setBounds(100, 100, 300, 300);
  19.                 fram1.setVisible(true);
  20.                 fram1.setResizable(false);
  21.                 fram1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  22.                 fram1.setLayout(null);
  23.                 fram1.add(lb1);
  24.                 fram1.add(lb2);
  25.                 fram1.add(lb3);
  26.                 fram1.add(lb4);
  27.                 fram1.add(lb5);
  28.         }
  29. }
複製代碼

作者: 黃宥華    時間: 2021-7-30 20:41

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. public class Ch09 {

  4.         public static void main(String[] args) {
  5.                
  6.                 JFrame fm=new JFrame("元件配置");
  7.                 JLabel l1=new JLabel("預設");
  8.                 JLabel l2=new JLabel("靠左",JLabel.LEFT);
  9.                 JLabel l3=new JLabel("置中",JLabel.CENTER);
  10.                 JLabel l4=new JLabel("靠右",JLabel.RIGHT);
  11.                 JLabel l5=new JLabel("其他");
  12.                 l1.setBounds(8, 0, 180, 30);
  13.                 l2.setBounds(8, 25, 180, 30);
  14.                 l3.setBounds(8, 50, 180, 30);
  15.                 l4.setBounds(8, 75, 180, 30);
  16.                 l5.setBounds(100, 100, 100, 30);
  17.                 fm.setBounds(100, 100, 200, 200);
  18.                 fm.setVisible(true);
  19.                 fm.setResizable(false);
  20.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  21.                 fm.setLayout(null);
  22.                 fm.add(l1);
  23.                 fm.add(l2);
  24.                 fm.add(l3);
  25.                 fm.add(l4);
  26.                 fm.add(l5);

  27.         }

  28. }
複製代碼

作者: 孫嘉駿    時間: 2021-7-30 20:43

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. public class Ch09 {
  4.         public static void main(String[] args) {            
  5.                 JFrame fm=new JFrame("元件配置練習");
  6.                 JLabel lb1=new JLabel("預設");
  7.                 JLabel lb2=new JLabel("靠左",JLabel.LEFT);
  8.                 JLabel lb3=new JLabel("置中",JLabel.CENTER);
  9.                 JLabel lb4=new JLabel("靠右",JLabel.RIGHT);
  10.                 JLabel lb5=new JLabel("其他");
  11.                
  12.                 lb1.setBounds(8, 0, 180, 30);
  13.                 lb2.setBounds(8, 35, 180, 30);
  14.                 lb3.setBounds(8, 70, 180, 30);
  15.                 lb4.setBounds(8, 105, 180, 30);
  16.                 lb5.setBounds(50, 140, 100, 30);
  17.                        
  18.                 fm.setBounds(100, 100, 200, 200);
  19.                 fm.setVisible(true);
  20.                 fm.setResizable(false);
  21.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  22.                 fm.setLayout(null);
  23.                 fm.add(lb1);
  24.                 fm.add(lb2);
  25.                 fm.add(lb3);
  26.                 fm.add(lb4);
  27.                 fm.add(lb5);
  28.         }
  29. }
複製代碼

作者: 董宸佑    時間: 2021-7-30 20:44

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


  4. public class Ch01 {

  5.         public static void main(String[] args) {      
  6.         JLabel lb1=new JLabel("預設");
  7.                 lb1.setBounds(8, 0, 180, 30);
  8.                
  9.                 JLabel lb2=new JLabel("靠左",JLabel.LEFT);
  10.                 lb2.setBounds(8, 35, 180, 30);
  11.                
  12.                 JLabel lb3=new JLabel("置中",JLabel.CENTER);
  13.                 lb3.setBounds(8, 70, 180, 30);
  14.                
  15.                 JLabel lb4=new JLabel("靠右",JLabel.RIGHT);
  16.                 lb4.setBounds(8, 105, 180, 30);
  17.                
  18.                 JLabel lb5=new JLabel("其他");
  19.                 lb5.setBounds(50, 140, 180, 30);
  20.         
  21.                 JFrame fm=new JFrame("JLabel");     
  22.         fm.setVisible(true);
  23.         fm.setBounds(100, 100, 200, 200);
  24.         fm.setResizable(false);
  25.         fm.setLayout(null);
  26.         fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  27.         fm.add(lb1);
  28.         fm.add(lb2);
  29.         fm.add(lb3);
  30.         fm.add(lb4);
  31.         fm.add(lb5);
  32.         }
  33. }
複製代碼

作者: 蔡忻霓    時間: 2021-7-30 20:44

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

  4.         public static void main(String[] args) {
  5.                
  6.                 JFrame fm=new JFrame("元件配置練習");
  7.                 JLabel lb1=new JLabel("預設");
  8.                 JLabel lb2=new JLabel("靠左",JLabel.LEFT);
  9.                 JLabel lb3=new JLabel("置中",JLabel.CENTER);
  10.                 JLabel lb4=new JLabel("靠右",JLabel.RIGHT);
  11.                 JLabel lb5=new JLabel("其他");
  12.                
  13.                 lb1.setBounds(8, 0, 180, 30);
  14.                 lb2.setBounds(8, 35, 180, 30);
  15.                 lb3.setBounds(8, 70, 180, 30);
  16.                 lb4.setBounds(8, 105, 180, 30);
  17.                 lb5.setBounds(50, 140, 100, 30);
  18.                        
  19.                 fm.setBounds(100, 100, 200, 200);
  20.                 fm.setVisible(true);
  21.                 fm.setResizable(false);
  22.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  23.                 fm.setLayout(null);
  24.                 fm.add(lb1);
  25.                 fm.add(lb2);
  26.                 fm.add(lb3);
  27.                 fm.add(lb4);
  28.                 fm.add(lb5);

  29.         }

  30. }
複製代碼

作者: 沈子晏    時間: 2021-7-30 20:44

本帖最後由 沈子晏 於 2021-7-30 20:45 編輯
  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;

  3. public class Ch005 {

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

  5.                 JLabel lab1=new JLabel("預設");
  6.                 lab1.setBounds(10, 10, 180, 20);

  7.                 JLabel lab2=new JLabel("靠左", JLabel.LEFT);
  8.                 lab2.setBounds(10, 40, 180, 20);

  9.                 JLabel lab3=new JLabel("置中", JLabel.CENTER);
  10.                 lab3.setBounds(10, 70, 180, 20);

  11.                 JLabel lab4=new JLabel("靠右", JLabel.RIGHT);
  12.                 lab4.setBounds(10, 100, 180, 20);

  13.                 JLabel lab5=new JLabel("其他");
  14.                 lab5.setBounds(80, 130, 180, 20);

  15.                 JFrame fm=new JFrame("JLabel");
  16.                 fm.setBounds(150, 100, 200, 200);
  17.                 fm.setVisible(true);
  18.                 fm.setResizable(false);
  19.                 fm.setLayout(null);
  20.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  21.                 fm.add(lab1);
  22.                 fm.add(lab2);
  23.                 fm.add(lab3);
  24.                 fm.add(lab4);
  25.                 fm.add(lab5);
  26.         }

  27. }
複製代碼

作者: 林政瑜    時間: 2021-7-30 20:44

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. public class Ch09 {
  4.         public static void main(String[] args) {            
  5.                 JFrame fm=new JFrame("元件配置練習");
  6.                 JLabel lb1=new JLabel("預設");
  7.                 JLabel lb2=new JLabel("靠左",JLabel.LEFT);
  8.                 JLabel lb3=new JLabel("置中",JLabel.CENTER);
  9.                 JLabel lb4=new JLabel("靠右",JLabel.RIGHT);
  10.                 JLabel lb5=new JLabel("其他");
  11.                
  12.                 lb1.setBounds(8, 0, 180, 30);
  13.                 lb2.setBounds(8, 35, 180, 30);
  14.                 lb3.setBounds(8, 70, 180, 30);
  15.                 lb4.setBounds(8, 105, 180, 30);
  16.                 lb5.setBounds(50, 140, 100, 30);
  17.                        
  18.                 fm.setBounds(100, 100, 200, 200);
  19.                 fm.setVisible(true);
  20.                 fm.setResizable(false);
  21.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  22.                 fm.setLayout(null);
  23.                 fm.add(lb1);
  24.                 fm.add(lb2);
  25.                 fm.add(lb3);
  26.                 fm.add(lb4);
  27.                 fm.add(lb5);
  28.         }
  29. }
複製代碼





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