24 lines
671 B
Plaintext
24 lines
671 B
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}
|
|
)
|
|
/*}}*/
|
|
|
|
更新履历 = /*
|
|
V0.1_20230220: 初版
|
|
V0.2_20230221: 修复右板无法刷写,增加点亮功能,增加更改履历
|
|
V0.3_20230221: 修复关闭界面后程序没有完全关闭的问题
|
|
*/
|
|
|
|
winform.button.oncommand = function(id,event){
|
|
winform.close();
|
|
}
|
|
|
|
winform.static.text = 更新履历;
|
|
|
|
winform.show();
|
|
win.loopMessage();
|
|
return winform; |