WPF MediaElement - 图像在暂停和重置位置时不会更新图像

时间:2012-11-12 20:54:50

标签: wpf c#-4.0 mediaelement

我正在使用WPF MediaElement播放视频。当MediaElement暂停时,我将位置设置为视频中的另一个点。我希望MediaElement中的视频图像能够刷新以反映新的位置。但是在我再次按下“播放”按钮之前,它不会更新图像。有没有办法强制MediaElement图像刷新而不调用其Play方法?

代码示例

TimeSpan tsPosition = new TimeSpan(0,0,30);   // set to 30 seconds
MediaElementObj.Position = tsPosition;
 if (PlayStatus == PAUSED) // ignore if not paused
            {
                // image refresh method call here if there is a way to do it
            }

1 个答案:

答案 0 :(得分:8)

将MediaElement上的ScrubbingEnabled属性设置为true。