无法在 silverlight MediaElement 中播放本地 WMV
我正在尝试在 silverlight MediaElement 中播放 WMV 格式的视频。
<StackPanel>
<Grid x:Name="LayoutRoot">
<MediaElement x:Name="media" Source="Bounce.wmv"
Width="300" Height="300" AutoPlay="True" />
</Grid>
</StackPanel>
这没有任何作用..但是如果我更改源属性以指向网络上的某些 WMV,它就可以工作。
我做错了什么?我将电影与 MainPage.xaml 放在同一目录中
I am trying to play a video in WMV format in a silverlight MediaElement.
<StackPanel>
<Grid x:Name="LayoutRoot">
<MediaElement x:Name="media" Source="Bounce.wmv"
Width="300" Height="300" AutoPlay="True" />
</Grid>
</StackPanel>
This does nothing.. but if I change the source attribute to point to some WMV out on the web it works.
What am I doing wrong? I have the the movie in the same directory as the MainPage.xaml
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,这取决于您从哪个页面调用它。如果您从子目录中的不同 XAML 页面(例如 Views)调用,则需要将
Source
更改为相对路径。尝试一下Source="\Bounce.wmv"
和Source="..\Bounce.wmv"
,具体取决于调用它时所在的文件夹结构。Well, it would depend on what page you are calling it from. If you are calling from a different XAML page that is in a sub-directory, like Views, you'll need to change the
Source
to a relative path. GiveSource="\Bounce.wmv"
andSource="..\Bounce.wmv"
a try, depending on the folder structure you are in when calling it.