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

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

1. 列表组件 · LayaAir3.0文档 · LAYABOX [ 100%]

...{ super(); } onAwake(): void { var list: Laya.List = new Laya.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的垂直滚动 list.scrollType = Laya.ScrollType.Ver...

来源: Laya3.0_文档 发布时间: 20230927

2. 树状列表组件 · LayaAir3.0文档 · LAYABOX [ 81%]

...ee.scrollBarSkin = "atlas/comp/vscroll.png"; // 添加列表渲染项 tree.itemRender = Item; // 解析tree的数据 tree.xml = new Laya.XML(treeData); tree.size(300, 300); tree.x = (Laya.stage.width - tree.width) / 2; tree.y = (Laya.stage.height - tree.height) / 2; tree.bgColor = "#d25454"; this.ow...

来源: Laya3.0_文档 发布时间: 20230828