this.Background = new System.Windows.Media.ImageBrush(new System.Windows.Media.Imaging.BitmapImage(new Uri(MY URL HERE)));
以上代码可帮助我显示图像控件及其图像。 我想播放一个视频文件。
System.Windows.Media
库有没有播放视频文件的方法?
答案 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();
答案 1 :(得分:0)
看看这个:Videobrush。如果这对您有用,请告诉我。