大约有 4 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0015 秒)
...Label(checkBox: CheckBox): void { checkBox.label = checkBox.selected ? "已选中" : "未选中"; } } } new laya.UI_CheckBox();package { import laya.display.Stage; import laya.ui.CheckBox; import laya.utils.Handler; import laya.webgl.WebGL; public class UI_CheckBox { private const COL_AMOUNT:int = 2...
来源: Laya2.0_示例 发布时间: 20241117
...this.onSelect, [comboBox]); return comboBox; } onSelect(cb) { console.log("选中了: " + cb.selectedLabel); } } new UI_ComboBox();module laya { import Stage = Laya.Stage; import ComboBox = Laya.ComboBox; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_ComboBox { private ...
来源: Laya2.0_示例 发布时间: 20241117
...源 this.refreshList.array = _arr; this.refreshList.scrollTo(line); //将选中索引设定为该索引 this.refreshList.selectedIndex = index; //恢复滚动条到原位 this.scrollBarIsStop = false; this.refreshList.scrollBar.backToNormal(); this.refreshLoading.visible = false; }); }); } onClickFl...
来源: Laya2.0_示例 发布时间: 20241117
...StageClick() { let p = new Laya.Point(0, 0); // 通过屏幕坐标来获取选中格子的索引 this.layer.getTilePositionByScreenPos(Laya.stage.mouseX, Laya.stage.mouseY, p); // 通过地图坐标得到屏幕坐标 this.layer.getScreenPositionByTilePos(Math.floor(p.x), Math.floor(p.y), p); this.sp...
来源: Laya2.0_示例 发布时间: 20241117