How to change image visibility from another Window`s button click event in WPF C#?
How to change image visibility from another Window`s button click event in WPF C#?
Share
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.
Any of the thousand possible ways. The simplest would be:
A better way would be to bind the image visibility to the ViewModel’s property, and change that property in the click handler.
Or you can associate a command with the button, and change the ViewModel of the window containing the image as a part of the business logic.
Etc. etc. etc.