我在Windows Phone 8.0 Silverlight中开发了一个使用MediaElement播放媒体的应用程序。所以,我想在媒体播放期间在TextBlock中显示当前位置媒体,怎么办? 感谢。
答案 0 :(得分:1)
您可以使用DispatcherTimer更新文本块。像这样:
B,C => [A]
要获取当前位置,请在A
函数中使用DispatcherTimer timer = new DispatcherTimer();
timer.Interval = new TimeSpan(0, 0, 1);
timer.Tick += timer_Tick;
timer.Start();
:
timer_Tick