返回列表 發帖

[回家作業]畫面練習

本帖最後由 歐柏罕 於 2018-1-6 11:44 編輯

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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


  5. public class Main {

  6.         public static void main(String[] args) {
  7.                 // TODO 自動產生的方法 Stub

  8.                 JFrame jf = new JFrame("My First Swing Example");
  9.                  jf.setBounds(200, 200, 350, 300);
  10.                  jf.setVisible(true);
  11.          jf.setResizable(false);
  12.          jf.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE );
  13.          jf.setLayout(null);  
  14.          
  15.          JLabel jl1 = new JLabel("User");
  16.          jl1.setBounds(10, 10, 215, 30);
  17.          jf.add(jl1);
  18.          
  19.          JLabel jl2 = new JLabel("Password") ;
  20.          jl2.setBounds(10, 40, 60, 40);
  21.          jf.add(jl2);
  22.          
  23.          JTextField jtf1 = new JTextField();
  24.          jtf1.setBounds(80, 10, 134, 30);
  25.          jtf1.setEditable(true);
  26.          jf.add(jtf1);
  27.          
  28.          JTextField jtf2 = new JTextField();
  29.          jtf2.setBounds(80, 45, 134, 30);
  30.          jtf2.setEditable(true);
  31.          jf.add(jtf2);
  32.          
  33.          JButton jb1 = new JButton("login");
  34.          jb1.setBounds(10, 100, 92, 25);
  35.          jf.add(jb1);
  36.         }

  37. }
複製代碼

TOP

  1. import java.awt.event.ActionEvent;
  2. import java.awt.event.ActionListener;

  3. import javax.swing.JButton;
  4. import javax.swing.JFrame;
  5. import javax.swing.JLabel;
  6. import javax.swing.JTextField;

  7. public class action implements ActionListener {
  8.         public static void main(String[] args) {
  9.                 action app = new action();
  10.         }

  11.         public void actionPerformed(ActionEvent e) {

  12.         }

  13.         private JFrame fm;
  14.         private JTextField tf1, tf2;
  15.         private JButton btn1;
  16.         private JLabel lb1, lb2;

  17.         action() {
  18.                 fm = new JFrame("My first Swing Example");
  19.                 tf1 = new JTextField();
  20.                 tf2 = new JTextField();
  21.                 lb1 = new JLabel("User");
  22.                 lb2 = new JLabel("Password");
  23.                 btn1 = new JButton("login");

  24.                 tf1.setBounds(100, 24, 225, 25);
  25.                 tf1.addActionListener(this);
  26.                 tf2.setBounds(100, 68, 225, 25);
  27.                 tf2.addActionListener(this);

  28.                 lb1.setBounds(10, 20, 60, 30);
  29.                 lb2.setBounds(10, 60, 60, 40);

  30.                 btn1.setBounds(10, 135, 92, 25);
  31.                 btn1.addActionListener(this);

  32.                 fm.setBounds(100, 100, 450, 250);
  33.                 fm.setVisible(true);
  34.                 fm.setResizable(true);
  35.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  36.                 fm.setLayout(null);
  37.                 fm.add(tf1);
  38.                 fm.add(tf2);
  39.                 fm.add(lb1);
  40.                 fm.add(lb2);
  41.                 fm.add(btn1);
  42.         }
  43. }
複製代碼

TOP

  1. import java.awt.event.ActionEvent;
  2. import java.awt.event.ActionListener;

  3. import javax.swing.JButton;
  4. import javax.swing.JFrame;
  5. import javax.swing.JLabel;
  6. import javax.swing.JTextField;

  7. public class E4503 implements ActionListener
  8. {
  9.         public static void main(String[] args)
  10.         {
  11.                 E4503 app = new E4503();
  12.         }

  13.         public void actionPerformed(ActionEvent e)
  14.         {

  15.         }

  16.         private JFrame fm;
  17.         private JTextField tf1, tf2;
  18.         private JButton btn1;
  19.         private JLabel lb1, lb2;

  20.         E4503() {
  21.                 fm = new JFrame("My First Swing Example");
  22.                 tf1 = new JTextField();
  23.                 tf2 = new JTextField();
  24.                 lb1 = new JLabel("User");
  25.                 lb2 = new JLabel("Password");
  26.                 btn1 = new JButton("login");

  27.                 tf1.setBounds(100, 24, 225, 25);
  28.                 tf1.addActionListener(this);
  29.                 tf2.setBounds(100, 68, 225, 25);
  30.                 tf2.addActionListener(this);

  31.                 lb1.setBounds(10, 20, 60, 30);
  32.                 lb2.setBounds(10, 60, 60, 40);

  33.                 btn1.setBounds(10, 135, 92, 25);
  34.                 btn1.addActionListener(this);

  35.                 fm.setBounds(100, 100, 360, 210);
  36.                 fm.setVisible(true);
  37.                 fm.setResizable(true);
  38.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  39.                 fm.setLayout(null);
  40.                 fm.add(tf1);
  41.                 fm.add(tf2);
  42.                 fm.add(lb1);
  43.                 fm.add(lb2);
  44.                 fm.add(btn1);
  45.         }
  46. }
複製代碼

TOP

  1. package loginSYSTEM;

  2. import java.awt.event.ActionEvent;
  3. import java.awt.event.ActionListener;

  4. import javax.swing.*;

  5. public class main implements ActionListener{

  6.         public static void main(String[] args) {
  7.                
  8.                 main app = new main();
  9.                
  10.         }

  11.         @Override
  12.         public void actionPerformed(ActionEvent e) {
  13.        
  14.                 if(e.getSource()==btn1)
  15.                 {
  16.                         JOptionPane.showMessageDialog(null, "登入成功", "系統", JOptionPane.INFORMATION_MESSAGE );
  17.                         lb1.setText("[系統]您已登入,祝您使用愉快");
  18.                         tf1.setText("WELCOME USERS");
  19.                         tf2.setText("***********");
  20.                 }
  21.                 if(e.getSource()==btn2)
  22.                 {
  23.                         JOptionPane.showMessageDialog(null, "很抱歉,目前不開放新用戶註冊", "系統", JOptionPane.ERROR_MESSAGE );
  24.                         lb1.setText("[公告]請先登入,新用戶請先註冊");
  25.                 }

  26.         }
  27.                 private JFrame fm;
  28.                 private JLabel lb1, lb2, lb3;
  29.                 private JButton btn1, btn2;
  30.                 private JTextField tf1, tf2;
  31.                
  32.         main()
  33.         {
  34.             fm = new JFrame("登入系統");
  35.                
  36.                 tf1=new JTextField();
  37.                 tf2=new JTextField();
  38.                 lb1=new JLabel("[公告]請先登入,新用戶請先註冊",JLabel.CENTER);
  39.                 lb2=new JLabel("帳號:");
  40.                 lb3=new JLabel("密碼:");
  41.                 btn1=new JButton("登入");
  42.                 btn2=new JButton("註冊");
  43.                
  44.                 tf1.setBounds(70, 45, 160, 30);
  45.                 tf1.addActionListener(this);
  46.                 tf2.setBounds(70, 82, 160, 30);
  47.                 tf2.addActionListener(this);
  48.         
  49.                 lb1.setBounds(0,  10, 240, 30);
  50.                 lb2.setBounds(10, 40, 60, 40);
  51.                 lb3.setBounds(10, 77, 60, 40);
  52.         
  53.                 btn1.setBounds(30, 135, 92, 25);
  54.                 btn1.addActionListener(this);
  55.                 btn2.setBounds(150, 135, 92, 25);
  56.                 btn2.addActionListener(this);
  57.         
  58.                 fm.setBounds(100, 100, 300, 220);
  59.                 fm.setVisible(true);
  60.                 fm.setResizable(true);
  61.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  62.                 fm.setLayout(null);
  63.                 fm.add(tf1);
  64.                 fm.add(tf2);
  65.                 fm.add(lb1);
  66.                 fm.add(lb2);  
  67.                 fm.add(lb3);
  68.                 fm.add(btn1);
  69.                 fm.add(btn2);
  70.         }
  71.        
  72.         }
複製代碼

TOP

  1. import javax.swing.*;

  2. public class Main {

  3.         public static void main(String[] args) {
  4.                 JFrame jf = new JFrame("My First Swing Exmple");
  5.                
  6.                 JLabel jl1 = new JLabel("User") ;
  7.                 JLabel jl2 = new JLabel("Password") ;
  8.                 JTextField jtf1 = new JTextField();
  9.                 JTextField jtf2 = new JTextField();
  10.                 JButton jb1 = new JButton("login");
  11.         
  12.                 jl1.setBounds(10, 30, 100, 50);
  13.         jl2.setBounds(10, 60, 100, 50);
  14.         jtf1.setBounds(100, 40, 100, 30);
  15.         jtf2.setBounds(100, 70, 100, 30);
  16.         jb1.setBounds(10, 100, 80, 25);

  17.                
  18.                 jf.setBounds(750, 350, 400, 250);
  19.         jf.setVisible(true);
  20.         jf.setResizable(false);
  21.         jf.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE );
  22.         jf.setLayout(null);
  23.         
  24.         
  25.         jf.add(jl1);
  26.         jf.add(jl2);
  27.         jf.add(jtf1);
  28.         jf.add(jtf2);
  29.         jf.add(jb1);

  30.         }

  31. }
複製代碼

TOP

  1. import java.awt.event.ActionEvent;
  2. import java.awt.event.ActionListener;

  3. import javax.swing.JButton;
  4. import javax.swing.JFrame;
  5. import javax.swing.JLabel;
  6. import javax.swing.JTextField;

  7. public class asdfgh implements ActionListener
  8. {
  9.         public static void main(String[] args)
  10.         {
  11.                 asdfgh app = new asdfgh();
  12.         }

  13.         public void actionPerformed(ActionEvent e)
  14.         {

  15.         }

  16.         private JFrame fm;
  17.         private JTextField tf1, tf2;
  18.         private JButton btn1;
  19.         private JLabel lb1, lb2;

  20.         asdfgh() {
  21.                 fm = new JFrame("My First Swing Example");
  22.                 tf1 = new JTextField();
  23.                 tf2 = new JTextField();
  24.                 lb1 = new JLabel("User");
  25.                 lb2 = new JLabel("Password");
  26.                 btn1 = new JButton("login");

  27.                 tf1.setBounds(100, 24, 225, 25);
  28.                 tf1.addActionListener(this);
  29.                 tf2.setBounds(100, 68, 225, 25);
  30.                 tf2.addActionListener(this);

  31.                 lb1.setBounds(10, 20, 60, 30);
  32.                 lb2.setBounds(10, 60, 60, 40);

  33.                 btn1.setBounds(10, 135, 92, 25);
  34.                 btn1.addActionListener(this);

  35.                 fm.setBounds(100, 100, 360, 210);
  36.                 fm.setVisible(true);
  37.                 fm.setResizable(true);
  38.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  39.                 fm.setLayout(null);
  40.                 fm.add(tf1);
  41.                 fm.add(tf2);
  42.                 fm.add(lb1);
  43.                 fm.add(lb2);
  44.                 fm.add(btn1);
  45.         }
  46. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

返回列表