Probably a stupid simple question but here goes. If I have a winform app and on the Validating_Event
for a container control I call ValidateChildren()
.
I am assumming I need a Validate_Event
for each child control that I want validated, correct? I know I need the control to have Causes Validation = True
but I would still need to put my desired validation for that control somewhere and I am asking, is that control's Validating_Event
the correct location?
This seems bulky...I'll have 20 Validating_Events
in a given Form. Is that "normal"?