您不能在方法/子中使用计时器。计时器工作的唯一方法是定期引发事件;在计时器的情况下,它被称为“滴答”事件,每次计时器“滴答”时都会引发。
您可能已经知道什么是事件——您的MainWindow_Loaded
方法正在处理一个Loaded
事件,即MainWindow
类的事件。
因此,您需要做的是向您的应用程序添加一个计时器,处理其 Tick 事件,并在该事件处理程序中使用当前位置更新您的文本框。
例如:
Public Class MainWindow
Private WithEvents timer As New System.Windows.Threading.DispatcherTimer()
Public Sub New()
' Initialize the timer.
timer.Interval = new TimeSpan(0, 0, 1); ' "tick" every 1 second
' other code that goes in the constructor
' ...
End Sub
Private Sub timer_Tick(sender As Object, e As EventArgs) Handles timer.Tick
' TODO: Add code to update textbox with current position
End Sub
Private Sub MainWindow_Loaded(sender As Object, e As RoutedEventArgs)
' Start the timer first.
timer.Start()
' Then start playing your music.
MyiSoundengine.Play2D("Music/001.mp3")
End Sub
' any other code that you need inside of your MainWindow class
' ...
End Class
请注意在WithEvents
计时器对象的类级声明中使用关键字。Handles
这使得仅使用事件处理程序上的语句来处理其事件变得容易。否则,您必须AddHandler
在构造函数内部使用将事件处理程序方法连接到所需事件。