当前位置: 技术问答>java相关
Button按钮如何写响应事件?
来源: 互联网 发布时间:2015-03-03
本文导语: Button按钮的事件采用什么类?是MouseEvent,还是其他的? | 用ActionListener接口 class 类名 implement ActionListener Button btn=new Button("Btn"); btn.addActionListener(this); //别忘了实现接口内的唯一方法actionPer...
Button按钮的事件采用什么类?是MouseEvent,还是其他的?
|
用ActionListener接口
class 类名 implement ActionListener
Button btn=new Button("Btn");
btn.addActionListener(this);
//别忘了实现接口内的唯一方法actionPerformed(ActionEvent e)啊,就是用这个方法体内的代码进行事件处理的。
class 类名 implement ActionListener
Button btn=new Button("Btn");
btn.addActionListener(this);
//别忘了实现接口内的唯一方法actionPerformed(ActionEvent e)啊,就是用这个方法体内的代码进行事件处理的。