作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试使用 MediaElement 使视频永远重复。我在 http://msdn.microsoft.com/en-us/library/ms741866.aspx 找到了下面的代码它工作正常。
<!-- The MediaElement control plays the sound. -->
<MediaElement Name="myMediaElement" >
<MediaElement.Triggers>
<EventTrigger RoutedEvent="MediaElement.Loaded">
<EventTrigger.Actions>
<BeginStoryboard>
<Storyboard>
<!-- The MediaTimeline has a RepeatBehavior="Forever" which makes the media play
over and over indefinitely.-->
<MediaTimeline Source="C:\MyVideo1.wmv" Storyboard.TargetName="myMediaElement"
RepeatBehavior="Forever" />
</Storyboard>
</BeginStoryboard>
</EventTrigger.Actions>
</EventTrigger>
</MediaElement.Triggers>
</MediaElement>
我遇到的问题是当我尝试将 MediaTimeLine 绑定(bind)到 xml 源时出现错误 - “必须指定 URI”。
<MediaTimeline Source="{Binding XPath=MyVideos}"
Storyboard.TargetName="myMediaElement" RepeatBehavior="Forever" />
是否有可以替代 xaml 的 C# 解决方案?
最佳答案
为什么不使用值转换器?我知道它不完全是 WPF,即需要一些 C# 编码,但这似乎正是你想要和需要的。 WPF 教程有一个相当不错的解释,所以如果您不介意我向您推荐该页面,那么:http://www.wpftutorial.net/ValueConverters.html
关于c# - 绑定(bind)到 xpath 时 Mediaelement repeatbehavior 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2403482/
我正在尝试使用 MediaElement 使视频永远重复。我在 http://msdn.microsoft.com/en-us/library/ms741866.aspx 找到了下面的代码它工作正常。
我是一名优秀的程序员,十分优秀!