20 lines
341 B
Plaintext
20 lines
341 B
Plaintext
|
import win.ui;
|
||
|
import fonts.fontAwesome;
|
||
|
/*DSG{{*/
|
||
|
var winform = win.form(text="wubiLex - 帮助";right=984;bottom=607;bgcolor=16777215;style=33554432)
|
||
|
winform.add()
|
||
|
/*}}*/
|
||
|
|
||
|
|
||
|
var SignalTimer = win.timer(,50);
|
||
|
SignalTimer.onTimer = function(){
|
||
|
//SignalDisplay();
|
||
|
}
|
||
|
SignalTimer.enable();
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
winform.show();
|
||
|
win.loopMessage();
|
||
|
return winform;
|