我正在使用Visual Basic.net和BackGround Worker。我想等待x毫秒,但要用当前的等待值更新Label。
我该怎么做?
我现在正在使用此代码:
Threading.Thread.Sleep(5000)
我可以使用什么,因为上面的代码没有告诉我睡眠进度?
答案 0 :(得分:-1)
我不确定你的意思,但这里有类似的代码。希望它有所帮助!
Dim EndTime As DateTime = DateTime.Now.AddSeconds(TimeToWaitInSeconds)
While DateTime.Now < EndTime
Application.DoEvents()
End While