Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a UserControl that contains multiple TextBoxes.

user control with 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.

share|improve this question
There are two proper ways: don't override it and override it to fix the problem you are trying to solve. Whatever that might be. – Hans Passant Oct 30 '12 at 11:13

closed as not a real question by Hans Passant, Bridge, gimpf, MainMa, Gamlor Oct 30 '12 at 18:35

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.