当前位置: 技术问答>java相关
怎样触发(激活)事件?
来源: 互联网 发布时间:2014-12-28
本文导语: 请问高手,怎样在一段程序中触发(激活)控件事件, 例如:向一JButton发送一鼠标点击消息,实际鼠标 并没有动作。不知有否说清? (dispchEvent?) | 在需要向JButton发送消息的地方加上:(注意EventID的数值...
请问高手,怎样在一段程序中触发(激活)控件事件,
例如:向一JButton发送一鼠标点击消息,实际鼠标
并没有动作。不知有否说清?
(dispchEvent?)
|
在需要向JButton发送消息的地方加上:(注意EventID的数值)事实上我这里是向button发送自定义事件,你修改一下让他变成click事件吧
ActionEvent ae =new ActionEvent(yourButton,yourEventID,"your description");
yourButton.dispatchEvent(ae);
ActionEvent ae =new ActionEvent(yourButton,yourEventID,"your description");
yourButton.dispatchEvent(ae);