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

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

1. List属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 100%]

...例化列表 var list:List = new List(); //设置列表渲染单元格为Item类(注:必须是类,不能是实例化对象,Item需类继承于Box) list.itemRender =Item; //列表显示区单元格的列数 list.repeatX = 1; //列表显示区单元格的行数 list.repeatY = 4; //设置列...

来源: Laya2.0_文档 发布时间: 20210715

2. List属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 98%]

... 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

3. List属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 94%]

... 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