• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 33 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0025 秒)

1. Button销毁时,未对_clickHandler进行回收 [ 100%]

Button销毁时,未对_clickHandler进行回收 源代码: destroy(destroyChild = true) { super.destroy(destroyChild); this._bitmap && this._bitmap.destroy(); this._text && this._text.destroy(destroyChild); this._bitmap = null; this._text = null; this._clickHandler = null; this....

来源: Laya_社区 发布时间: 20200514

2. Button点击函数逻辑bug [ 95%]

...t.CLICK) { this.toggle && (this.selected = !this._selected); this._clickHandler && this._clickHandler.run(); return; } !this._selected && (this.state = Button.stateMap[e.type]); }上面逻辑当clickHander只执行一次的时候逻辑上有bug,Hander的run执行的时候...

来源: Laya_社区 发布时间: 20191112

3. Button 添加事件不执行? [ 90%]

...e = 10; rightBtn.x = 100; rightBtn.y = 200; rightBtn.on(Event.CLICK, this, clickHandler); rightBtn.clickHandler = Handler.create(this, function () { console.log('click handler'); }); function clickHandler () { console.log('on click') } Stage.addChild(rightBtn);  请问一下,为什么事件不执...

来源: Laya_社区 发布时间: 20180309

4. [LayaAir3]clickHandler只会执行一次,之后点击不再触发 laya.3.0.9 [ 88%]

[LayaAir3]clickHandler只会执行一次,之后点击不再触发 laya.3.0.9 //组件被启用后执行,例如节点被添加到舞台后     onEnable(): void {         console.log("2d gamescene onEnable");                  let btn:Laya.Button = LayaUtil.GetChildByPath(this.owner...

来源: Laya_社区 发布时间: 20231221

5. clickHandler事件怎么移除? [ 86%]

clickHandler事件怎么移除? 是不是自己内部处理的? 需要类型跟 on 一样 off ,有其他方法移除? 2018-10-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: off...

来源: Laya_社区 发布时间: 20181029

6. Button自定义属性 [ 86%]

...:Laya.Button = this.main.getchildbuy(i); btn.on(Laya.Event.CLICK,this.this.clickHandle); btn.xx = "xxx"; } private clickHandle(e:Laya.Event):void{ } 类似于我想给btn绑定“xxx”数据,用来给后面点击获取

来源: Laya_社区 发布时间: 20181024

7. laya.ui.ISelect [ 82%]

...ectImplementors Button ISelect 接口,实现对象的 selected 属性和 clickHandler 选择回调函数处理器。 Public Properties PropertyDefined By  clickHandler : Handler 对象的点击事件回掉函数处理器。 ISelect  selected : Boolean 一个布尔值,表示是否被选择...

来源: laya_api 发布时间: 20170929

8. laya.ui.ISelect [ 82%]

...ectImplementors Button ISelect 接口,实现对象的 selected 属性和 clickHandler 选择回调函数处理器。 Public Properties PropertyDefined By  clickHandler : Handler 对象的点击事件回掉函数处理器。 ISelect  selected : Boolean 一个布尔值,表示是否被选择...

来源: Laya2.0_api 发布时间: 20190513

9. 多个button如何区分 [ 81%]

... for(var i:int=0;i<10;i++) { var btn:Button=new Button(); ....... btn.clickHandler = laya.utils.Handler.create(this,this.onClickButton,[i],false); } this.onClickButton = function(id){ 通过ID 判断点击哪一个按钮! } 189*****192 • 2017-04-26 09:38 @cyqcyqcyq:我明白你的意思 this....

来源: Laya_社区 发布时间: 20170425

10. list和cell如何联系 [ 81%]

...rHandler 中给 cell 中的 btn 添加点击事件处理 ; 类似 if(btn.clickHandler)  btn.clickHandler = new handler (this, onListBtnClick) ; onListBtnClick 函数中 list.selectItem 来判断执行什么逻辑 ; 2017-01-21 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折...

来源: Laya_社区 发布时间: 20170121