VB.NET毫秒计时器 - “hh \:mm \:ss \,fff”

时间:2012-06-13 18:03:38

标签: c# subtitle

我需要计数毫秒的计时器 - 说明:

格式:“hh \:mm \:ss \,fff”

If MilliTimer.ForMilliseconds = "00:00:01,447" Then
Label1.text = "Test"
End If

(该代码仅供参考)

1 个答案:

答案 0 :(得分:1)

很难说出你要求的是什么,但是如果你想测试自你启动“计时器”以来已经发生了多少毫秒,你需要StopWatch类。你可以这样开始秒表:

StopWatch sw = new stopWatch();
sw.Start();

然后你可以测试发生了多少毫秒:

if (sw.ElapsedMilliseconds > 1447)