I have a UserControl that contains multiple TextBoxes.

The form hosting the user control uses the following code for Validation
if (this.ValidateChildren(ValidationConstraints.Enabled))
{
// save form data
}
I want to know how to override ValidateChildren(ValidationConstraints validationConstraints) in my user control so that it returns true when all TextBoxes passes some validation (i.e. they are not empty).
[EDIT]:
I ended up doing it the following way instead of overriding ValidateChildren(). I have a property IsValid on my user control
public bool IsValid
{
get
{
foreach (var textBox in this.Controls.OfType<TextBox>())
{
if (String.IsNullOrEmpty(textBox.Text))
{
return false;
}
}
return true;
}
}
and in my host form I use Validating event of my user control
private void UserControl_Validating(object sender, CancelEventArgs e)
{
if (!this.UserControl.IsValid)
{
this.errorProvider.SetError(this.UserControl, "enter text");
e.Cancel = true;
}
}
I hope I did it the right way.