I am creating a windows form in C#,
I have phone and email fields that I want to validate when the user leaves the fields, when I double click the textbox in visual studio, it writes a textchanged event, I don't want to call the validate method until the user is done entering the full entry.
Is there a way to do this similar to OnBlur in Javascript?
So Ihave tried MouseLeave,Off Focus, and they all act like TextChanged,
I dont want to raise my validation event until the user is done typing, not after every keystroke.
Does anybody know how to do this,
This is for a desktop app, not an asp.net project.