Java JButton 触发事件两种方式 addActionListene
public class LoginForm extends JFrame implements ActionListener {/****/private static final long serialVersionUID = -3457588410024263691L;/****/JPanel jp1, jp2, jp3; // 布局容器JLabel lblLoginName, lblPas
·
import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class LoginForm extends JFrame implements ActionListener {
/**
*
*/
private static final long serialVersionUID = -3457588410024263691L;
/**
*
*/
JPanel jp1, jp2, jp3; // 布局容器
JLabel lblLoginName, lblPassWord; // 标签
private JButton cmdLogin, cmdClear; // 命令按扭
// Button cmdLogin, cmdClear; // 命令按扭
JTextField txtLoginName; // 登录名 文本框
JPasswordField txtPassWord; // 密码 文本框
int inputcount = 0; // 输入的次数
public dqTable table;
public LoginForm() {
super("登录");
// TODO 自动生成的构造函数存根
jp1 = new JPanel();
jp2 = new JPanel();
jp3 = new JPanel();
lblLoginName = new JLabel("用户名");// 标签
lblPassWord = new JLabel("密 码");
// cmdLogin = new JButton("登录");// 按钮
// cmdClear = new JButton("取消");
cmdLogin = new JButton("登录");// 按钮
cmdClear = new JButton("取消");
cmdClear.addActionListener(this);
cmdLogin.addActionListener(this);
cmdClear.addActionListener(new ClearListener());
cmdLogin.addActionListener(new LoginListener());
txtLoginName = new JTextField(12);// 文本框,里面给一个长度
txtPassWord = new JPasswordField(12);// 密码框,给个长度
jp1.add(lblLoginName);
jp1.add(txtLoginName);
jp2.add(lblPassWord);
jp2.add(txtPassWord);
jp3.add(cmdLogin);
jp3.add(cmdClear);
this.setLayout(new GridLayout(3, 1));// 网格布局三行一列
this.add(jp1);
this.add(jp2);
this.add(jp3);
this.setBounds(100, 100, 400, 150); // 位置大小
this.setTitle("用户登录"); // 标签
this.setResizable(false); // 不可改大小
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO 自动生成的方法存根
LoginForm form = new LoginForm();
}
public void actionPerformed(ActionEvent event) {
Object source = event.getSource();
if (source == cmdClear) {
System.out.println("cmdClear");
System.exit(0);// 退出系统
} else if (source == cmdLogin) {
System.out.println("cmdLogin");
}
}
public class LoginListener implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
// TODO 自动生成的方法存根
System.out.println("1");
}
}
public class ClearListener implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
// TODO 自动生成的方法存根
System.out.println("2");
}
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)