返回列表 發帖

常用swing元件 - JTextField

本帖最後由 tonyh 於 2016-1-23 16:59 編輯

JTextField 類別的建構子
1. JTextField():建立空白的單行文字欄位物件。
2. JTextField(String text):建立並顯示text文字字串的單行文字欄位物件。

JTextField 類別下的常用方法
1. void setText(String text) / String getText()
  設定元件內的顯示文字。 / 傳回元件內的文字字串。
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 setEditable(Boolean b)
    設定元件是否可被編輯。

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.JTextField;
  4. public class Ch80 {

  5.         public static void main(String[] args) {
  6.                
  7.                 JTextField tf1=new JTextField();
  8.                 JTextField tf2=new JTextField();
  9.                 JTextField tf3=new JTextField();
  10.                 JLabel lb1=new JLabel("輸入一");
  11.                 JLabel lb2=new JLabel("輸入二");
  12.                 JLabel lb3=new JLabel("輸入三");
  13.                 JFrame fm=new JFrame("JTextField配置練習");
  14.                
  15.                 tf1.setBounds(60, 10, 125, 30);
  16.                 tf2.setBounds(60, 50, 125, 30);
  17.                 tf2.setEnabled(false);
  18.                 tf3.setBounds(60, 90, 125, 30);
  19.                 tf3.setEditable(false);
  20.                
  21.                 lb1.setBounds(10, 10, 50, 30);
  22.                 lb2.setBounds(10, 50, 50, 30);
  23.                 lb3.setBounds(10, 90, 50, 30);
  24.                
  25.                 fm.setBounds(100, 100, 200, 200);
  26.                 fm.setVisible(true);
  27.                 fm.setResizable(false);
  28.                 fm.setLayout(null);
  29.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  30.                 fm.add(lb1);
  31.                 fm.add(lb2);
  32.                 fm.add(lb3);
  33.                 fm.add(tf1);
  34.                 fm.add(tf2);
  35.                 fm.add(tf3);

  36.         }

  37. }
複製代碼

  1. import javax.swing.*;
  2. public class Ch80 {

  3.         public static void main(String[] args) {
  4.                 JFrame fm1=new JFrame("JTextField");
  5.                 JLabel lb1=new JLabel("輸入一");
  6.                 JLabel lb2=new JLabel("輸入二");
  7.                 JLabel lb3=new JLabel("輸入三");
  8.                 JTextField tf1=new JTextField();
  9.                 JTextField tf2=new JTextField();
  10.                 JTextField tf3=new JTextField();
  11.                
  12.                 tf1.setBounds(60, 10, 120, 30);
  13.                 tf2.setBounds(60, 50, 120, 30);
  14.                 tf2.setEnabled(false);
  15.                 tf3.setBounds(60, 90, 120, 30);
  16.                 tf3.setEditable(false);
  17.                
  18.                 lb1.setBounds(10, 10, 50, 30);
  19.                 lb2.setBounds(10, 50, 50, 30);
  20.                 lb3.setBounds(10, 90, 50, 30);
  21.                
  22.                 fm1.setBounds(100, 100, 200, 200);
  23.                 fm1.setVisible(true);
  24.                 fm1.setResizable(false);
  25.                 fm1.setLayout(null);
  26.                 fm1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  27.                 fm1.add(lb1);
  28.                 fm1.add(lb2);
  29.                 fm1.add(lb3);
  30.                 fm1.add(tf1);
  31.                 fm1.add(tf2);
  32.                 fm1.add(tf3);
  33.         }
  34. }
複製代碼
كخخخخخخخخخخخخخ

TOP

  1. package ch80;

  2. import javax.swing.JFrame;
  3. import javax.swing.JLabel;
  4. import javax.swing.JTextField;
  5. public class ch80 {

  6.         public static void main(String[] args) {
  7.                
  8.                 JTextField tf1=new JTextField();
  9.                 JTextField tf2=new JTextField();
  10.                 JTextField tf3=new JTextField();
  11.                 JLabel lb1=new JLabel("輸入一");
  12.                 JLabel lb2=new JLabel("輸入二");
  13.                 JLabel lb3=new JLabel("輸入三");
  14.                 JFrame fm=new JFrame("JTextField配置練習");
  15.                
  16.                 tf1.setBounds(60, 10, 125, 30);
  17.                 tf2.setBounds(60, 50, 125, 30);
  18.                 tf2.setEnabled(false);
  19.                 tf3.setBounds(60, 90, 125, 30);
  20.                 tf3.setEditable(false);
  21.                
  22.                 lb1.setBounds(10, 10, 50, 30);
  23.                 lb2.setBounds(10, 50, 50, 30);
  24.                 lb3.setBounds(10, 90, 50, 30);
  25.                
  26.                 fm.setBounds(100, 100, 200, 200);
  27.                 fm.setVisible(true);
  28.                 fm.setResizable(false);
  29.                 fm.setLayout(null);
  30.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  31.                 fm.add(lb1);
  32.                 fm.add(lb2);
  33.                 fm.add(lb3);
  34.                 fm.add(tf1);
  35.                 fm.add(tf2);
  36.                 fm.add(tf3);

  37.         }

  38. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.JTextField;
  4. public class Ch80{
  5.     public static void main(String args[]){
  6.          JFrame fm=new JFrame("JTextField配置練習");
  7.          JLabel lb1=new JLabel("輸入一");
  8.          JLabel lb2=new JLabel("輸入二");
  9.          JLabel lb3=new JLabel("輸入三");
  10.          
  11.          JTextField tf1=new JTextField();
  12.          JTextField tf2=new JTextField();
  13.          tf2.setEnabled(false);
  14.          JTextField tf3=new JTextField();
  15.          tf3.setEditable(false);
  16.          fm.setBounds(100,100,200,200);
  17.          fm.setVisible(true);
  18.          fm.setResizable(false);
  19.          fm.setLayout(null);
  20.          fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  21.          lb1.setBounds(10,10,50,30);
  22.          lb2.setBounds(10,50,50,30);
  23.          lb3.setBounds(10,90,50,30);
  24.          tf1.setBounds(60,10,120,30);
  25.          tf2.setBounds(60,50,120,30);
  26.          tf3.setBounds(60,90,120,30);
  27.          fm.add(lb1);
  28.          fm.add(lb2);
  29.          fm.add(lb3);
  30.          fm.add(tf1);
  31.          fm.add(tf2);
  32.          fm.add(tf3);

  33.     }
  34. }
複製代碼

TOP

  1. import javax.swing.*;
  2. public class Ch80
  3. {
  4.   public static void main(String arg[])
  5.   {
  6.    JFrame f=new JFrame("\u083c");
  7.    JLabel lb[]=new JLabel[]{new JLabel("輸入1"),new JLabel("輸入2"),new JLabel("輸入3")};
  8.    JTextField t[]=new JTextField[]{new JTextField(),new JTextField(),new JTextField()};
  9.    lb[0].setBounds(10,10,50,30);
  10.    lb[1].setBounds(10,50,50,30);
  11.    lb[2].setBounds(10,90,50,30);
  12.    t[0].setBounds(50,10,130,30);
  13.    t[1].setBounds(50,50,130,30);
  14.    t[2].setBounds(50,90,130,30);
  15.    t[1].setEnabled(false);
  16.    t[2].setEditable(false);
  17.    f.setResizable(true);
  18.    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  19.    f.setVisible(true);
  20.    f.setBounds(100,100,200,200);
  21.    f.setLayout(null);
  22.    f.add(lb[0]);
  23.    f.add(lb[1]);
  24.    f.add(lb[2]);
  25.    f.add(t[0]);
  26.    f.add(t[1]);
  27.    f.add(t[2]);
  28.   }
  29. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.JTextField;
  4. public class A80 {

  5.         public static void main(String[] args) {
  6.                
  7.                 JTextField tf1=new JTextField();
  8.                 JTextField tf2=new JTextField();
  9.                 JTextField tf3=new JTextField();
  10.                 JLabel lb1=new JLabel("輸入一");
  11.                 JLabel lb2=new JLabel("輸入二");
  12.                 JLabel lb3=new JLabel("輸入三");
  13.                 JFrame fm=new JFrame("JTextField配置練習");
  14.                
  15.                 tf1.setBounds(60, 10, 125, 30);
  16.                 tf2.setBounds(60, 50, 125, 30);
  17.                 tf2.setEnabled(false);
  18.                 tf3.setBounds(60, 90, 125, 30);
  19.                 tf3.setEditable(false);
  20.                
  21.                 lb1.setBounds(10, 10, 50, 30);
  22.                 lb2.setBounds(10, 50, 50, 30);
  23.                 lb3.setBounds(10, 90, 50, 30);
  24.                


  25.                 fm.setBounds(100, 100, 200, 200);
  26.                 fm.setVisible(true);
  27.                 fm.setResizable(false);
  28.                 fm.setLayout(null);
  29.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  30.                 fm.add(lb1);
  31.                 fm.add(lb2);
  32.              fm.add(lb3);
  33.                 fm.add(tf1);
  34.               fm.add(tf2);
  35.                 fm.add(tf3);

  36.         }

  37. }
複製代碼

TOP

返回列表