在TextBlock中显示时间当前位置媒体 - Windows Phone 8.0 Silverlight

时间:2015-08-31 02:05:00

标签: windows-phone-8 mediaelement

我在Windows Phone 8.0 Silverlight中开发了一个使用MediaElement播放媒体的应用程序。所以,我想在媒体播放期间在TextBlock中显示当前位置媒体,怎么办? 感谢。

1 个答案:

答案 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