如何使用Windows窗体中的一个按钮控制多个用户控件?

时间:2014-12-17 16:34:32

标签: c# forms user-controls

我有一个动态创建用户控件的表单,每个用户控件都有一个开始按钮和一个停止按钮。有没有办法启动所有并停止表单上的所有按钮?

我尝试使用在单击主窗体按钮时设置为true的布尔值,但是一旦创建了用户控件,它就不会检查布尔值。

以下是主窗体的代码(vdoPlayer是用户控件):

namespace AutoPopulateVideoSaving
{
    public partial class Form1 : Form
    {

        public Form1()
        {
            InitializeComponent();
            DisplayImage();
        }

        private void DisplayImage()
        {
            int h = 20;

            for (int i = 0; i < 6; i++)
            {
                int w = i % 2;
                vdoPlayer np = new vdoPlayer();

                np.Location = new System.Drawing.Point((33 + 408 * w), h);
                np.Name = "test" + i.ToString();
                np.Size = new System.Drawing.Size(408, 266);
                this.Controls.Add(np);
                h = h + (266 * w);
            }

        }

        private void StartAllBut_Click(object sender, EventArgs e)
        {

        }

        private void StopAllBut_Click(object sender, EventArgs e)
        {

        }    
    }
}

以下是用户控件的代码:

namespace AutoPopulateVideoSaving
{
    public partial class vdoPlayer : UserControl
    {

        public vdoPlayer()
        {
            InitializeComponent();
            VariableClass2.InitiateVariables();
            JPEGStream jpegSource1 = new JPEGStream("http:// IP address /jpg/image.jpg?resolution=320x240");
            jpegSource1.Login = username;
            jpegSource1.Password = password;
            jpegSource1.NewFrame += new NewFrameEventHandler(jpegSource1_NewFrame);
            jpegSource1.VideoSourceError += new VideoSourceErrorEventHandler(jpegSource1_VideoSourceError);
            Player1.VideoSource = jpegSource1;
        }

        void jpegSource1_NewFrame(object sender, NewFrameEventArgs eventArgs)
        {
            Bitmap image = new Bitmap(eventArgs.Frame, 320, 240);
            image.Save(someFile, System.Drawing.Imaging.ImageFormat.Bmp);
        }

        void jpegSource1_VideoSourceError(object sender, VideoSourceErrorEventArgs eventArgs)
        {
            //Error handler
            Debug.WriteLine(eventArgs.Description);
        }

        private void StartBut_Click(object sender, EventArgs e)
        {
            Player1.VideoSource.Start();
        }

        private void StopBut_Click(object sender, EventArgs e)
        {
            Player1.VideoSource.Stop();
        }    
    }
}

我不知道在Form1的按钮单击事件中放入什么来控制其余部分。就像我之前说过的,我尝试使用布尔值,但它没有用。这甚至可能吗?

1 个答案:

答案 0 :(得分:2)

首先,vdoPlayer需要为其他要调用的对象公开此功能。像这样:

public void StartVideo()
{
    Player1.VideoSource.Start();
}

public void StopVideo()
{
    Player1.VideoSource.Stop();
}

(一旦到位,该类&#39;点击处理程序和其他功能应该使用这些方法,而不是直接在Start()上调用Stop()VideoSource,只是为了更清晰的代码。)

此外,表单应保留所有相关控件的列表。这样的事情可以解决问题:

public partial class Form1 : Form
{

    private List<vdoPlayer> videoPlayers;

    public Form1()
    {
        InitializeComponent();
        videoPlayers = new List<vdoPlayer>();
        DisplayImage();
    }

    // etc.
}

只要动态创建这样的控件,只需将其添加到该列表即可。当它被销毁时,将其从列表中删除。 (您可以跳过显式列表并尝试动态遍历Controls集合以动态构建列表,但这可能会非常难看。)

现在,您的表单按钮只需要调用视频播放器控件上的操作:

private void StartAllBut_Click(object sender, EventArgs e)
{
    foreach (var videoPlayer in videoPlayers)
        videoPlayer.StartVideo();
}

private void StopAllBut_Click(object sender, EventArgs e)
{
    foreach (var videoPlayer in videoPlayers)
        videoPlayer.StopVideo();
}