views:

486

answers:

1

is there a way to disable the validation of errorprovider elegantly when click cancel button to dismiss a winform? The validation always happens when the textbox lose focus, and i don't wanna it to validate when the user click cancel button, it is just a little bit silly to validate when the user clicking cancel.

+2  A: 

after googling, found the answer, just set CauseValidation property of the cancel button to false. that's it.

Benny