当窗体被隐藏时,视频在后台播放
本文关键字:视频 后台 播放 窗体 隐藏 | 更新日期: 2023-09-27 18:02:40
我正在做一个项目,我在每个表单上都有很多视频。当我点击Next按钮进入下一个视频时。之前的形式上,我的视频保持隐藏,但仍在播放模式。这是我的代码
private void tsbNext_Click(object sender, EventArgs e)
{
//tsbPrevious.Visible = true;
if (fVedio1.Visible == true)
{
fVideo1.Hide();//it hide the form on which video is on playing mode
btnVideo2_Click(sender, e);//it let me go to next form
}
}我做错了什么?我可以使用fVideo1.Close(),但它将无法再开始视频了
写下:
if (fVedio1.Visible == true)
{
fVideo1.Hide();//it hide the form on which video is on playing mode
fVideo1.Pause();//it will pause the Video
}
并将其添加到btnVideo2_Click方法中:
fVideo1.Continue()