码迷,mamicode.com
首页 > 其他好文 > 详细

窗口的切换

时间:2019-05-18 09:57:36      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:jpa   main   textfield   eve   登陆   窗口   false   swing   static   

1、运用事件处理相关知识,完成两个窗口之间的切换,例如:登陆窗口------》注册窗口
package qwe;
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class Ewq implements ActionListener {
JFrame f1,f2;
JPanel p1,p2;
JLabel l1,l2,l3,l4;
JButton b1,b2,b3;
JTextField t1,t2,t3,t4;
public Ewq(){
f1 = new JFrame("登录");
f2 = new JFrame("注册");
p1 = new JPanel();
p2 = new JPanel();
l1 = new JLabel("账号:");
l2 = new JLabel("密码:");
l3 = new JLabel("用户名:");
l4 = new JLabel("密码:");
b1 = new JButton("登录");
b2 = new JButton("注册");
b3 = new JButton("注册成功");
t1 = new JTextField(20);
t2 = new JTextField(20);
t3 = new JTextField(20);
t4 = new JTextField(20);
f1.add(p1);
p1.add(l1);
p1.add(t1);
p1.add(l2);
p1.add(t2);
p1.add(b1);
p1.add(b2);
b2.addActionListener(this);
f1.setVisible(true);
f1.setSize(300, 200);
f2.add(p2);
p2.add(l3);
p2.add(t3);
p2.add(l4);
p2.add(t4);
p2.add(b3);
f2.setVisible(false);
}
public static void main(String[] args) {
new Ewq();
}
public void actionPerformed(ActionEvent e) {
f1.setVisible(false);
f2.setSize(300, 200);
f2.setVisible(true);
}

}

窗口的切换

标签:jpa   main   textfield   eve   登陆   窗口   false   swing   static   

原文地址:https://www.cnblogs.com/6825186a/p/10884585.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!