Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4775039
  • 博文数量: 206
  • 博客积分: 5240
  • 博客等级: 大校
  • 技术积分: 3224
  • 用 户 组: 普通用户
  • 注册时间: 2010-08-12 21:40
文章分类

全部博文(206)

文章存档

2013年(13)

2012年(8)

2011年(33)

2010年(152)

我的朋友

分类:

2010-10-10 22:21:07

import win.ui;
/*DSG{{*/
var winform = win.form(parent=...; right=349;text="AAuto Form";bottom=249 )
winform.add( 
btnKillTimer={ bottom=128;text=
"删除时钟";left=184;top=104;font=LOGFONT( name="宋体";h=-12 );z=2;right=296;cls="button" };
btnChangeSpeed={ bottom=128;text=
"改变速度";left=56;top=104;font=LOGFONT( name="宋体";h=-12 );z=1;right=168;cls="button" }
)
/*}}*/

math.randomize();
var tmproc = function (id) {
    winform.text = math.random(1, 1000);
}
timer1 = winform.addtimer(1000, tmproc);

winform.btnChangeSpeed.oncommand = 
function (id, event) {
    winform.killtimer(timer1);
    timer1 = winform.addtimer(200, tmproc);
}

winform.btnKillTimer.oncommand = 
function (id, event) {
    
if (timer1) {
        winform.killtimer(timer1);
        timer1 = 0;
    }
}

winform.show();
win.loopMessage();

阅读(1226) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~