大约有 95 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0032 秒)
Laya.Handler为什么注册不成功? this.scrollView.mouseHandler = Laya.Handler.create(this,this.onScrollMouse) this.scrollView.mouseHandler = new Laya.Handler(this, this.onScrollMouse);我在scrollView中有个mouseHandler的Laya.Handler变量,想直接注册到这个变量上,但是两种...
来源: Laya_社区 发布时间: 20180814
...元件无法接受鼠标事件 List组件可以接受滑动事件,但是mouseHandler事件无法使用, 2018-02-02 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 qian 赞同来自: 你可以在mouseHandler下...
来源: Laya_社区 发布时间: 20180202
...)下button触发发鼠标事件如何操作? 我设置了List容器中的mouseHandler监听每个box点击事件,然后box中有一个按钮,我每次点击这个box中的按钮时,box也响应了点击事件,我的需求是点击按钮时,只响应按钮事件,不响应box点击事件...
来源: Laya_社区 发布时间: 20160712
... 0 分享 微博 QZONE 微信 andyskaura 赞同来自: this.otherItem_list.mouseHandler = new Handler(this,otherItem_listRender,null,false); 你试一下在回调otherItem_listRender(){ .skin="" } 里面直接给skin赋值,我平常都是这样用的。 2018-03-21 0 2 分享 微博 QZO...
来源: Laya_社区 发布时间: 20180321
...博 QZONE 微信 嘿哈 赞同来自: ippon list组件有renderHandler和mouseHandler,两个作用是不一样的,你这个里面用的是renderHandler,相当于每次把条目拉到显示区域都会去执行一下renderHandler里的内容,所以就相当于你只要拖动list了,你的...
来源: Laya_社区 发布时间: 20190208
...的实现方式吗?(*^__^*) 嘻嘻…… Morn UI下的List组件提供了mouseHandler方法,该方法的回调方法会返回2个参数,一个是事件类型,一个是当前你所点击列表的索引值。根据索引值即可判断你点击的是哪一条列表,并根据该索引写下...
来源: Laya_社区 发布时间: 20151224
Laya.Handler.create和new Laya.Handler有啥区别 this.sList.mouseHandler = Laya.Handler.create(this, this.onMouse);//鼠标响应事件 this.sList.mouseHandler = new Laya.Handler(this, this.onMouse) ; // 鼠标事件响应. 2017-04-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...
来源: Laya_社区 发布时间: 20170425
... 赞同来自: tangjianft 、cyqcyqcyq 、浪货界扛把子 请使用list.mouseHandler=new Handler(this,onMouse);替代selectHandler的使用 示例 list.mouseHandler=new Handler(this,onMouse); private function onMouse(e:Event,index:Number):void { // TODO Auto Generated method stub if(e.type==Event...
来源: Laya_社区 发布时间: 20161202
...。总不能在里面做删除操作。 2 CheckBox点击的时候,mouseHandler里的点击事件也一起被触发了。我该如何将这两个事件区分开来。 3 list 每行结束都会有个下划线,该怎么做。 4 list 里面有个SelectBox的状态如何才能改变。当...
来源: Laya_社区 发布时间: 20170309
...0 0 分享 微博 QZONE 微信 han123peng 赞同来自: 我自己解决了,mouseHandler,可以接收所有事件,在这里面判断是否有点击事件。 2018-05-24 0 3 分享 微博 QZONE 微信 dz5566 赞同来自: 改源码方案可以这样: laya.ui.js改成这样即可,去掉判断if (t...
来源: Laya_社区 发布时间: 20180507