标题:今天刚学了winforms的timer控件,写了简单的运用timer控件的程序
只看楼主
yangqw010
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2006-5-6
 问题点数:0 回复次数:2 
今天刚学了winforms的timer控件,写了简单的运用timer控件的程序


long timeStart;
private void Form1_Load(object sender, System.EventArgs e)
{
timeStart=System.Environment.TickCount;
this.timer1 .Enabled =true;
this.timer1 .Interval =1000;
}
TimeSpan timeSpan;

private void timer1_Tick(object sender, System.EventArgs e)
{
long current=System.Environment.TickCount;
timeSpan=new TimeSpan (current*10*1000);
this.label1 .Text ="本计算机启动时间:"+timeSpan.ToString ();
timeSpan=new TimeSpan((current-timeStart)*10*1000);
this.label2.Text ="程序运行时间:"+timeSpan.ToString ();
this.label3.Text ="当前时间:"+DateTime.Now.ToString();
}

搜索更多相关主题的帖子: timer 控件 winforms 
2006-05-10 13:58
xxxxx52
Rank: 4
等 级:贵宾
威 望:13
帖 子:689
专家分:0
注 册:2006-4-30
得分:0 
8错哦  我试过了

好的资料下载网站http:///in.asp?id=xuelion2006 嘿嘿帮点一下拉~
2006-05-10 17:03
mofaser
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-5-11
得分:0 
good~学习一下
2006-05-11 13:17



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-63096-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.118829 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved