JAVA里 鼠标点击按钮后,触发事件,需要ActionEvent事件。关键是点击时需

2024年11月12日 17:39
有1个网友回答
网友(1):

//创建按钮
CreateJButton chooserJButton = new CreateJButton();
EventDeal eventDeal = new EventDeal();
//添加监听事件
chooserJButton.addActionListener(eventDeal );
//监听事件的实现类
public class EventDeal implements ActionListener {
//必须重写此方法,对按钮进行操作后系统会自动调用此方法
@Override
public void actionPerformed(ActionEvent arg0) {
// TODO Auto-generated method stub
//调用你自己想要调用的方法
initEvent(jTextField);
}
public void initEvent(JTextField jTextField){
System.out.println("调用到方法")
}

}