What is the equivalent Following code in wpf
code in winapp :
private void textBox1_Leave(object sender, EventArgs e)
{
MessageBox.Show("www.stackoverflow.com");
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
(actually you could even reuse the same signature as before, all you need to do is hook the method to the
LostFocusevent instead of theLeaveevent)