I have windows and phone text boxes in a Windows form that I want to check when a user leaves the fields.
When I double-click on a text field in the Visual Studio Form Designer, it textchanged event. This is not entirely suitable, because you want to call the verification method only after the user has entered the full record, and not after each keystroke.
Is there a way to make this look like an onBlur event in JavaScript?
I tried MouseLeave , Off Focus , and they all act as textchanged .
How can I do that?
Alex
source share