import win.ui;
import process;
/*DSG{{*/
var winform = win.form(text="常用字处理";right=630;bottom=366)
winform.add(
button={cls="button";text="记事本";left=508;top=31;right=614;bottom=75;z=1};
button2={cls="button";text="WORD";left=508;top=102;right=614;bottom=146;z=2};
button3={cls="button";text="EXCEL";left=508;top=174;right=614;bottom=218;z=3};
button4={cls="button";text="

PT";left=508;top=247;right=614;bottom=291;z=4};
plus={cls="plus";left=5;top=2;right=494;bottom=366;background="C:\Users\admin\Pictures\Screenshots\wdcl.png";z=5};
static={cls="static";text="文 档 处 理";left=154;top=306;right=353;bottom=360;ah=1;aw=1;color=8421376;font=LOGFONT(italic=255;h=-32;name='微软雅黑');notify=1;transparent=1;z=6}
)
/*}}*/
winform.button.oncommand = function(id,event){
process.execute("notepad.exe")
}
winform.button2.oncommand = function(id,event){
process.execute("WINWORD.exe")
}
winform.button3.oncommand = function(id,event){
process.execute("excel.exe")
}
winform.button4.oncommand = function(id,event){
process.execute("

OWERPNT.exe")
}
winform.static.oncommand = function(id,event){
}
winform.show();
win.loopMessage();