本文介绍了UWP MediaPlayerElement-如何循环/重复播放mp4的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个mp4,需要在页面中重复播放.
I have an mp4 that I need to repeat in a page.
如何实现?
<MediaPlayerElement
Grid.Row="0"
Background="White"
Source="{x:Bind MovieSource}"
Width="900"
AutoPlay="True" >
</MediaPlayerElement>
我尝试使用情节提要,但发现MediaTimeline
在UWP中不可用.
I tried to use a storyboard but found out that MediaTimeline
is not available in UWP.
找不到可行的替代方案...
Can't find a working alternative...
推荐答案
MediaPlayer 属性具有 IsLoopingEnabled 属性.
这篇关于UWP MediaPlayerElement-如何循环/重复播放mp4的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!