I need to show a control in a form according to an event in a WPF control.
TheBoard theBoard = new TheBoard();
theBoard.keyboard.Visible = true;
even if I write:
theBoard.Close();
nothing will happen, if anybody can give me a solution please.
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.
You could raise an event from WPF control and subscribe that event in Windows form control. Here is a link which could give you the way to go.
http://www.a2zdotnet.com/View.aspx?Id=79#.T46J5bN-WUI