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

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

71. 【LIST无法拖动】参照官方实例做的 [ 53%]

...: void {         var list = new List();         list.itemRender = Item;         list.repeatX = 3;         list.repeatY = 3;         list.x = 50;         list.y = 100;         list.spaceX = -50;         list.spaceY = ...

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

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

...必须是类,不能是实例化对象,Item需类继承于Box) list.itemRender =Item; //列表显示区单元格的列数 list.repeatX = 1; //列表显示区单元格的行数 list.repeatY = 4; //设置列表位置 list.x = (Laya.stage.width - Item.WID) / 2; list.y = (Laya.stage.height - Item.H...

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

73. 列表组件 · LayaAir3.0文档 · LAYABOX [ 52%]

...{ 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_文档 发布时间: 20241014

74. laya.ui.Tree [ 52%]

...件检测依据。 Stage对象和UI的View组件默认为true。 Sprite  itemRender : * 此对象包含的List实例的单元格渲染器。 取值: 单元格类对象。 UI 的 JSON 描述。 Tree  keepStatus : Boolean 数据源发生变化后,是否保持之前打开状态,默认为true...

来源: laya_api 发布时间: 20170929

75. laya.ui.List_API3.0 [ 52%]

...ist:List = new List();//创建一个 List 类的实例对象 listlist.itemRender = Item;//设置 list 的单元格渲染器。 list.repeatX = 1;//设置 list 的水平方向单元格数量。 list.repeatY = 10;//设置 list 的垂直方向单元格数量。 list.vScrollBarSkin = "resource/ui/vs...

来源: Laya3.0_api 发布时间: 20231115

76. laya.ui.Tree [ 51%]

...件检测依据。 Stage对象和UI的View组件默认为true。 Sprite  itemRender : * 此对象包含的List实例的单元格渲染器。 取值: 单元格类对象。 UI 的 JSON 描述。 Tree  keepStatus : Boolean 数据源发生变化后,是否保持之前打开状态,默认为true...

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

77. Image.loadImage 方法加载问题 [ 50%]

...问题     this.publicSpaceList = new Laya.List(); this.publicSpaceList.itemRender = gamepublicspaceitem.PublicSpaceItem; this.publicSpaceList.repeatX = 1; this.publicSpaceList.repeatY = 3; this.publicSpaceList.spaceY = 0; // this.publicSpaceList.x = 22; this.publicSpaceList.y = 100; this.publicSp...

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

78. 微信小游戏关系链 我创建了一个开放域的项目 但是报错了 [ 46%]

...kListItem", Laya.Box); //rankList var rankList = new Laya.List(); rankList.itemRender = RankListItem; rankList.repeatX = 1; rankList.repeatY = 4; // 使用但隐藏滚动条 rankList.vScrollBarSkin = ""; // rankList.selectEnable = true; // rankList.selectHandler = new Laya.Handler(this, onSelect); r...

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

79. laya.ui.Tree_API3.0 [ 38%]

....scrollBarSkin = "resource/ui/vscroll.png";//设置 tree 的皮肤。 tree.itemRender = Item;//设置 tree 的项渲染器。 tree.xml = xml;//设置 tree 的树结构数据。 tree.x = 100;//设置 tree 对象的属性 x 的值,用于控制 tree 对象的显示位置。 tree.y = 100;//设置 tree...

来源: Laya3.0_api 发布时间: 20231115

80. UI-RefreshList [ 38%]

...reshList.top = 30; Laya.stage.addChild(this.refreshList); this.refreshList.itemRender = ItemBox; this.refreshList.vScrollBarSkin = ""; // 创建数据 var data = this.createData(9, "初始数据"); this.refreshList.array = data; // 添加事件监听 this.refreshList.on(Event.MOUSE_UP, this, this.st...

来源: Laya2.0_示例 发布时间: 20241124