跳到主要内容

requestResizing 请求调整窗口元素(过滤重复请求)

requestResizing

类型: MethodDeclaration

所属类: WindowElement

定义位置: ui.ts

描述

请求调整窗口元素(过滤重复请求)

返回值

类型: void

源代码

位置: 第 5942 行

public requestResizing(): void {
// 忽略同一帧内的重复请求
if (!this.requesting) {
this.requesting = true
Callback.push(() => {
delete this.requesting
this.resize()
})
}
}

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