验证动态添加的UserControl

时间:2012-12-17 14:57:22

标签: c# winforms

我已将usercontrol动态添加到winform面板中  我动态添加了控件,所以我想在winform中验证控件,所以我使用了这个方法

   private bool mobilemanu()
    {
        return panel1.Controls.OfType<UserControl1>().Select(uc => uc.comboBox1).Any(cb => cb.Text == String.Empty);
    }

并在按钮点击事件中使用

       private void button2_Click(object sender, EventArgs e)
    {
        bool mobil = mobilemanu();

        if (!mobil)
{
    //do this
}
    else
{
    //do that
}
}

同时我也用这个代码来显示哪个控件未正确填充 但它只显示第一个控件是错误的 我是编程的新手,所以我在这里有点困惑

         private void mobilemanuval()
    {
        bool val = mobilemanu();
        if (val == true)
        {
            foreach (Control ctrl in panel1.Controls)
            {
                if (ctrl is UserControl1)
                {
                    UserControl1 myCrl = ctrl as UserControl1;

                    {
                        if (myCrl.comboBox2.Text == string.Empty)
                        {
                            errorProvider1.SetError(myCrl.comboBox1, "entersomething");
                        }
                        if (myCrl.comboBox2.Text == string.Empty)
                        {
                            errorProvider1.SetError(myCrl.comboBox2, "entersomething");
                        }

                    }

                }
            }
        }
    }

1 个答案:

答案 0 :(得分:1)

也许你只是混淆了控件,因为他们的名字只在姓名的最后一个字母(数字)上有所不同?这有用吗:

                    if (myCrl.comboBox1.Text == string.Empty)
                    {
                        errorProvider1.SetError(myCrl.comboBox1, "entersomething");
                    }
                    if (myCrl.comboBox2.Text == string.Empty)
                    {
                        errorProvider1.SetError(myCrl.comboBox2, "entersomething");
                    }