Java图形界面——登录框

/*
 * 登录框
 */
package com.test.swing;

import java.awt.*;
import javax.swing.*;

public class Test1 extends JFrame{
		//定义组件
	JPanel jp1, jp2, jp3;
	JLabel jl1, jl2;
	JTextField jtf;
	JPasswordField jpf;
	JButton jb1, jb2;

	public static void main(String[] args) {
		Test1 test = new Test1();
	}
		//构造函数 初始化组件
	public Test1(){
		jp1 = new JPanel();
		jp2 = new JPanel();
		jp3 = new JPanel();
		
		jl1 = new JLabel("用户名");
		jl2 = new JLabel("密	     码");
		
		jtf = new JTextField(10);
		jpf = new JPasswordField(10);
		
		jb1 = new JButton("登录");
		jb2 = new JButton("取消");
		
		jp1.add(jl1);
		jp1.add(jtf);
		jp2.add(jl2);
		jp2.add(jpf);
		jp3.add(jb1);
		jp3.add(jb2);
		
		this.add(jp1);
		this.add(jp2);
		this.add(jp3);
		
		this.setLayout(new GridLayout(3, 1));		
		this.setTitle("窗体名");
		this.setSize(200,200);
		this.setLocation(100,200);
		this.setResizable(false);
		this.setVisible(true);
		this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
	}

}

  • 0
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值