Validates all registered form controls.
Namespace: CleanCode.FormsAssembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
public void ValidateAll()
public void ValidateAll()
public:
void ValidateAll()
public:
void ValidateAll()
Typically this only needs to be called
during initialization just after all form controls are registered.
Note that if during initialization you assign values to each
control
and use the
TextChanged event handler,
this method would not be needed at all.
Rather, use the
Validate method in each control's
TextChanged event handler
(or other key or mouse event handler as you deem appropriate).