Are there any problems with having a separate ErrorProvider for each control?

Usually you will have one ErrorProvider for all controls on the form; however, I have a control that is subtypes of a text field that should show the user an error. I do not want to expose the error provider on each of them, it can be used (more code changes than I would like)

So, are there any problems in that each of my controls creates its own error provider?

+3
source share
1 answer

There should not be any problems, I would say that the use of ErrorProvider is limited since you cannot show errors for controls that do not match the pattern.

+1
source

All Articles