0
this.Background = new System.Windows.Media.ImageBrush(new System.Windows.Media.Imaging.BitmapImage(new Uri(label)));

上面的代码使用媒体库显示来自 Uri 馈送的图像。(标签包含 URL)。

我应该使用什么库以相同的方式播放视频文件。(我需要播放视频文件而不是显示和图像)

帮助 ?

4

1 回答 1

1

您可以为此使用MediaElement 。

它位于 System.Windows.Controls 命名空间中并依赖于 Windows Media Player。如果您的系统上安装了 WMP,MediaElement 是一种简单的方法。

执行此操作的代码应如下所示:

MediaElement me = new MediaElement();
// initialize and do other stuff to MediaElement
this.Background = new VisualBrush(me);
于 2013-11-06T09:36:13.537 回答