返回列表 發帖

常用swing元件 - JLabel

本帖最後由 tonyh 於 2021-7-29 16:09 編輯

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

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. public class Ch76 {
  4.                 public static void main(String[] args) {
  5.                         JFrame fm=new JFrame("元件配置練習");
  6.                        
  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.setLayout(null);
  23.             fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  24.             fm.add(lb1);
  25.             fm.add(lb2);
  26.             fm.add(lb3);
  27.             fm.add(lb4);
  28.             fm.add(lb5);
  29.         }

  30. }
複製代碼

TOP

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

TOP

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

  4.         public static void main(String[] args) {
  5.                
  6.                 JFrame fm=new JFrame("Practice");
  7.                 JLabel lb1=new JLabel("Starting");
  8.                 JLabel lb2=new JLabel("Left",JLabel.LEFT);
  9.                 JLabel lb3=new JLabel("enter",JLabel.CENTER);
  10.                 JLabel lb4=new JLabel("Right",JLabel.RIGHT);
  11.                 JLabel lb5=new JLabel("Others");
  12.                
  13.                 lb1.setBounds(8, 0, 180, 30);
  14.                 lb2.setBounds(8, 50, 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. }
複製代碼

TOP

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


  4.                 public static void main(String[] args) {
  5.                        
  6.                 JFrame fm1=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.                 fm1.setBounds(100,100,200,200);
  19.                 fm1.setVisible(true);
  20.                 fm1.setResizable(false);
  21.                 fm1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  22.                 fm1.setLayout(null);
  23.                 fm1.add(lb1);
  24.                 fm1.add(lb2);
  25.                 fm1.add(lb3);
  26.                 fm1.add(lb4);
  27.                 fm1.add(lb5);
  28.                
  29.         }

  30. }
複製代碼
七日不見 如隔一周

TOP

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

TOP

返回列表