返回列表 發帖

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

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

  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 Ch01 {
  4.         public static void main(String[] args) {
  5.        
  6.                 JFrame f=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, 35, 180, 30);
  14.                 l3.setBounds(8, 70, 180, 30);
  15.                 l4.setBounds(8, 105, 180, 30);
  16.                 l5.setBounds(50, 140, 100, 30);
  17.                 f.setBounds(100, 100, 200, 200);
  18.                 f.setVisible(true);
  19.                 f.setResizable(false);
  20.                 f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  21.                 f.setLayout(null);
  22.                 f.add(l1);
  23.                 f.add(l2);
  24.                 f.add(l3);
  25.                 f.add(l4);
  26.                 f.add(l5);
  27.         }
  28. }
複製代碼
Allen

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. public class Ch01
  4. {
  5.         public static void main(String[] args)
  6.         {
  7.                 JFrame fm=new JFrame("元件配置練習");
  8.                 JLabel l1=new JLabel("預設");
  9.                 JLabel l2=new JLabel("靠左",JLabel.LEFT);
  10.                 JLabel l3=new JLabel("置中",JLabel.CENTER);
  11.                 JLabel l4=new JLabel("靠右",JLabel.RIGHT);
  12.                 JLabel l5=new JLabel("其他");
  13.                 l1.setBounds(8, 0, 180, 30);
  14.                 l2.setBounds(8, 35, 180, 30);
  15.                 l3.setBounds(8, 70, 180, 30);
  16.                 l4.setBounds(8, 105, 180, 30);
  17.                 l5.setBounds(50, 140, 100, 30);   
  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(l1);
  24.                 fm.add(l2);
  25.                 fm.add(l3);
  26.                 fm.add(l4);
  27.                 fm.add(l5);
  28.         }
  29. }
複製代碼
Ivy

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 JiaHo {

  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 Morris {

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

  30. }
複製代碼

TOP

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


  3. public class label
  4. {

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

  30.         }

  31. }
複製代碼

TOP

返回列表