2023-03-21 10:26:14 +08:00
|
|
|
import win.ui;
|
|
|
|
/*DSG{{*/
|
|
|
|
var winform = win.form(text="aardio form";right=499;bottom=399;border="thin";mode="popup";title=false)
|
|
|
|
winform.add(
|
|
|
|
button={cls="button";text="确定";left=359;top=346;right=471;bottom=387;z=1};
|
|
|
|
static={cls="static";text="Static";left=21;top=17;right=458;bottom=340;transparent=1;z=2}
|
|
|
|
)
|
|
|
|
/*}}*/
|
|
|
|
|
|
|
|
更新履历 = /*
|
2023-04-15 10:42:37 +08:00
|
|
|
V0.1_20230320: 初版
|
2024-10-09 16:27:03 +08:00
|
|
|
V0.2_20240921: 中英文版本
|
|
|
|
v0.3_20241009: 增加日志记录;增加VIN记录;
|
2023-03-21 10:26:14 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
winform.button.oncommand = function(id,event){
|
|
|
|
winform.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
winform.static.text = 更新履历;
|
|
|
|
|
|
|
|
winform.show();
|
|
|
|
win.loopMessage();
|
|
|
|
return winform;
|