发送自定义事件,事件名ClickWord。
this.dispatchEvent(new egret.Event("ClickWord", false, false, this)); //发送自定义事件
接收到自定义事件ClickWord后,执行箭头函数。
this.addEventListener("ClickWord", ()=>{}, this); //接受自定义事件
2024-01-16 11:39:58
发送自定义事件,事件名ClickWord。
this.dispatchEvent(new egret.Event("ClickWord", false, false, this)); //发送自定义事件
接收到自定义事件ClickWord后,执行箭头函数。
this.addEventListener("ClickWord", ()=>{}, this); //接受自定义事件
下一篇:C#--对象转成XML的方法