保存一下
This commit is contained in:
@@ -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')
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* 窗体配置
|
||||
*/
|
||||
export interface WindowFormConfig {
|
||||
export interface IWindowFormConfig {
|
||||
/**
|
||||
* 窗体名称
|
||||
*/
|
||||
Reference in New Issue
Block a user