2023-03-25 17:03:26 +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}
|
|
|
|
)
|
|
|
|
/*}}*/
|
|
|
|
|
|
|
|
更新履历 = /*
|
|
|
|
V2.0: 采用新界面
|
|
|
|
V2.1: 加入诊断,修复信号界面闪烁问题
|
|
|
|
V2.2: 加入全屏,修改标定/诊断逻辑
|
2023-04-11 17:06:18 +08:00
|
|
|
V2.3: 标定增加预设配置
|
2023-03-25 17:03:26 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
winform.button.oncommand = function(id,event){
|
|
|
|
winform.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
winform.static.text = 更新履历;
|
|
|
|
|
|
|
|
winform.show();
|
|
|
|
win.loopMessage();
|
|
|
|
return winform;
|