无法在 silverlight MediaElement 中播放本地 WMV

发布于 2024-08-25 11:14:58 字数 378 浏览 5 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感情旳空白 2024-09-01 11:14:58

嗯,这取决于您从哪个页面调用它。如果您从子目录中的不同 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. Give Source="\Bounce.wmv" and Source="..\Bounce.wmv" a try, depending on the folder structure you are in when calling it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文