首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

Timer同步的一个有关问题

2014-06-07 
Timer同步的一个问题Random rnd new Random(DateTime.Now.Millisecond)int th1 rnd.Next(0, 120)the

Timer同步的一个问题

Random rnd = new Random(DateTime.Now.Millisecond);int th1 = rnd.Next(0, 120);
            thermometer1.CurValue = th1;
            wendu1.Text = Convert.ToString(th1);

运行的时候发现thermometer1.CurValue的值和wendu1.Text的值不一样,wendu1.Text的值总是慢一拍,大侠们我该怎么解决啊
[解决办法]
Thread.Sleep(1000);//延迟1秒

[解决办法]
请把你程序弄上来吧。我用你这段代码在winform运行,没你所说的情况

热点排行