跳到主要内容

connectChildren 连接所有子元素

connectChildren

类型: MethodDeclaration

所属类: UIElement

定义位置: ui.ts

描述

连接所有子元素

返回值

类型: void

源代码

位置: 第 1190 行

private connectChildren(): void {
const children = this.children
const length = children.length
for (let i = 0; i < length; i++) {
children[i].connect()
}
}

文档生成时间:2025/7/7 12:07:07