We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 9 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可以尝试 Microsoft for .NET 的 DirectX SDK:download
它包含一个 AudioVideoPlayback 命名空间,其中包含易于在任何 .NET 项目中使用的 Video 类。您可以将 Video 类绑定到 Panel 控件,如下所示:
video 类包含多种播放方法,例如 Play、Pause、Stop,当然还有 FromFile。
在 C# 中使用 AudioVideoPlayback 命名空间的文档和示例:
通过这些 MSDN 文章和我上面的示例代码,您应该能够显示视频并扩展您的类以在播放列表中播放多个视频。
You might try the DirectX SDK from Microsoft for .NET: download
It contains a AudioVideoPlayback namespace with the Video class that is easy to use in any .NET project. You bind the Video class to a Panel control like this:
The video class contains several methods for playback like Play, Pause, Stop and of course FromFile.
Documentation and examples of using the AudioVideoPlayback namespace in C#:
With these MSDN articles and my sample code above you should be able to display a video and extend your class to play multiple videos in a playlist.