Timer同步的一个有关问题
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运行,没你所说的情况