保存一下

This commit is contained in:
2025-08-29 14:22:20 +08:00
parent edb725354e
commit 17024fbf89
15 changed files with 74 additions and 205 deletions

View File

@@ -4,6 +4,7 @@ import type { IProcess } from '@/core/process/IProcess.ts'
import type { IWindowForm } from '@/core/window/IWindowForm.ts'
import type { IWindowFormConfig } from '@/core/window/types/IWindowFormConfig.ts'
import type { WindowFormPos } from '@/core/window/types/WindowFormTypes.ts'
import { processManager } from '@/core/process/ProcessManager.ts'
export default class WindowFormImpl implements IWindowForm {
private readonly _id: string = uuidV4();
@@ -16,7 +17,7 @@ export default class WindowFormImpl implements IWindowForm {
return this._id;
}
public get proc() {
return XSystem.instance.processManage.findProcessById(this._procId)
return processManager.findProcessById(this._procId)
}
private get desktopRootDom() {
return XSystem.instance.desktopRootDom;