java实现登陆界面

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class T2  {

	/**
	 * @param args
	 */
	private static JFrame frame;
	private JTextField t1,t2;
	private JPasswordField password;
	private JLabel b1,b2,b3,b4;
	private JButton  btn1,btn2;
	public T2(){
		frame=new JFrame();
		frame.setSize(300,400);
		frame.setLayout(new FlowLayout());
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		frame.setVisible(true);
		b1=new JLabel("用户名");
		b2=new JLabel("密码");
		t1=new JTextField(10);
		password=new JPasswordField(10);
		btn1=new JButton("登陆");
		btn2=new JButton("取消");
		frame.add(b1);
		frame.add(t1);
		frame.add(b2);
		frame.add(password);
		frame.add(btn1);
		frame.add(btn2);
		
        btn1.addActionListener(new ActionListener(){
        	public void actionPerformed(ActionEvent e){
        		if((t1.getText().trim()).equals("余雪鹏") && (password.getText().trim()).equals("123456"))
        		{
        			b3=new JLabel("密码正确,登陆成功!");
        			frame.add(b3);
        			frame.setVisible(true);
        		}
        		else{
        			b4=new JLabel("密码错误 ,找回密码!");
        			frame.add(b4);
        			frame.setVisible(true);
        		}
        	}
        });
        btn2.addActionListener(new ActionListener(){
        	public void actionPerformed(ActionEvent e){
        		if(e.getSource()==btn2)
        		{
        			System.exit(0);
        		}
        	
        	}
        });
	}
	public static void main(String[] args) {
		// TODO Auto-generated method stub
         new T2();
         frame.setVisible(true);
	}

}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

樱缘之梦

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>