33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
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: 加入全屏,修改标定/诊断逻辑
|
|
V2.3: 标定增加预设配置
|
|
V2.4: 增加DAC周期写入功能
|
|
V2.5: 巡航等按键增加第二路信号显示,增加调试帧开关
|
|
V2.6: 修复右边2个按键信号和基线没显示数值问题
|
|
V2.7: 信号界面增加左右按下状态
|
|
V2.8: 增加显示错误信息
|
|
v2.9: 修复诊断错误信号关联错误;增加读取振动参数;增加自动重连功能
|
|
v2.10: 产品信号改为raw值
|
|
V2.11: 滑条名字改为KEY
|
|
*/
|
|
|
|
winform.button.oncommand = function(id,event){
|
|
winform.close();
|
|
}
|
|
|
|
winform.static.text = 更新履历;
|
|
|
|
winform.show();
|
|
win.loopMessage();
|
|
return winform; |