保存一下

This commit is contained in:
2025-08-26 10:33:41 +08:00
parent 95a73ef524
commit 26f68d89bb
19 changed files with 165 additions and 71 deletions

View File

@@ -1,7 +1,7 @@
import { v4 as uuidV4 } from 'uuid';
import type AppProcess from '../process/AppProcess.ts'
import type ProcessImpl from '../process/impl/ProcessImpl.ts'
import XSystem from '../XSystem.ts'
import type { AppProcessInfo } from '../process/AppProcessInfo.ts'
import type { ProcessInfoImpl } from '../process/impl/ProcessInfoImpl.ts'
export default class WindowForm {
private readonly _id: string = uuidV4();
@@ -11,10 +11,10 @@ export default class WindowForm {
return this._id;
}
public get proc() {
return XSystem.instance.processManages.findProcessById(this._procId)
return XSystem.instance.processManage.findProcessById(this._procId)
}
constructor(proc: AppProcess, startName: string) {
constructor(proc: ProcessImpl, startName: string) {
this._procId = proc.id;
console.log('WindowForm')
}

View File

@@ -1,7 +1,7 @@
/**
*
*/
export interface WindowFormConfig {
export interface IWindowFormConfig {
/**
*
*/