大约有 3 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0017 秒)
...例化列表 var list:List = new List(); //设置列表渲染单元格为Item类(注:必须是类,不能是实例化对象,Item需类继承于Box) list.itemRender =Item; //列表显示区单元格的列数 list.repeatX = 1; //列表显示区单元格的行数 list.repeatY = 4; //设置列...
来源: Laya2.0_文档 发布时间: 20210715
... this.setup(); } private setup(): void { var list: List = new List(); list.itemRender = Item; list.repeatX = 1; list.repeatY = 4; list.x = (Laya.stage.width - Item.WID) / 2; list.y = (Laya.stage.height - Item.HEI * list.repeatY) / 2; // 使用但隐藏滚动条 list.vScrollBarSkin = ""; list.selectE...
来源: Laya2.0_文档 发布时间: 20210715
... Box = Laya.Box; var Image = Laya.Image; var WID = 373, HEI = 85; function Item() { Item.__super.call(this); this.size(WID, HEI); this.img = new Image(); this.addChild(this.img); this.setImg = function(src) { this.img.skin = src; } } Laya.class(Item, "Item", Box); // 主要逻辑代码 var Stage = L...
来源: Laya2.0_文档 发布时间: 20210714