Я могу поместить видео в форму 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;
}