mirror of
https://github.com/Gongxh0901/kunpolibrary
synced 2025-09-14 10:28:41 +00:00
20 lines
440 B
TypeScript
20 lines
440 B
TypeScript
|
/**
|
||
|
* @Author: Gongxh
|
||
|
* @Date: 2025-09-04
|
||
|
* @Description:
|
||
|
*/
|
||
|
import { fgui, kunpo } from "../../header";
|
||
|
|
||
|
const { uiheader, uiprop, uicom, uiclick } = kunpo._uidecorator;
|
||
|
const { bindMethod, bindProp } = kunpo.data;
|
||
|
|
||
|
@uicom("Window", "Item1")
|
||
|
export class Item1 extends fgui.GComponent {
|
||
|
@uiprop
|
||
|
private lab_desc: fgui.GTextField;
|
||
|
|
||
|
public onInit(): void {
|
||
|
console.log("Window Item1 onInit", this.lab_desc);
|
||
|
}
|
||
|
}
|