C#播放视频文件

时间:2013-11-06 07:22:41

标签: c# video shared-libraries media-player

this.Background = new System.Windows.Media.ImageBrush(new System.Windows.Media.Imaging.BitmapImage(new Uri(MY URL HERE)));

以上代码可帮助我显示图像控件及其图像。 我想播放一个视频文件。

System.Windows.Media库有没有播放视频文件的方法?

2 个答案:

答案 0 :(得分:0)

如果您使用的是WPF,可以试试这个:

// 
// Create a VideoDrawing. 
//      
MediaPlayer player = new MediaPlayer();

player.Open(new Uri(@"sampleMedia\xbox.wmv", UriKind.Relative));

VideoDrawing aVideoDrawing = new VideoDrawing();

aVideoDrawing.Rect = new Rect(0, 0, 100, 100);

aVideoDrawing.Player = player;

DrawingBrush brush = new DrawingBrush(aVideoDrawing);
this.Background = brush;

// Play the video once.
player.Play();    

来源:http://msdn.microsoft.com/en-us/library/aa969812.aspx

答案 1 :(得分:0)

看看这个:Videobrush。如果这对您有用,请告诉我。