Gui界面设计,如何在输入用户名和密码之后。点击登录按钮,出现相应的提示信息!
如何为按钮添加事件,新手,请照顾……写的越简单越好~
[解决办法]
button1.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
JOptionPane.showMessageDialog(null,"弹出消息了");
}
});
[解决办法]
Eclipse RCP 4.2版本自带WindowBuilder插件,用设计视图,拖个按钮,双击添加事件。
b1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
String tt1=t1.getText().toString();
String tt2=t2.getText().toString();
if(tt1.equals("123") && tt2.equals("123"))
{
//Intent intent=new Intent(buju.this,gongneng.class);
JOptionPane.showMessageDialog(jf, "验证成功","提示",0);
jf.setVisible(false);
new gongneng().main(null);
}
else
{
JOptionPane.showMessageDialog(jf,"账号或密码错误","提示",0);
}
}
});