我可以将视频放在我的 Windows 窗体中。
我的问题是,当它播放完视频后,我该如何制作它,它开始播放另一个视频?意思是像一个序列。完成后,播放另一个视频。
到目前为止,我已经设法播放视频,它只是循环播放视频。
有任何想法吗?
到目前为止,这是我的代码:
public partial class Form1 : Form
{
Video video;
public Form1()
{
InitializeComponent();
Initializevid1();
}
public void Initializevid1()
{
// store the original size of the panel
int width = viewport.Width;
int height = viewport.Height;
// load the selected video file
video = new Video("C:\\Users\\Dave\\Desktop\\WaterDay1.wmv");
// set the panel as the video object’s owner
video.Owner = viewport;
// stop the video
video.Play();
video.Ending +=new EventHandler(BackLoop);
// resize the video to the size original size of the panel
viewport.Size = new Size(width, height);
}
private void BackLoop(object sender, EventArgs e)
{
//video.CurrentPosition = 0;
}