I have a button on a page (page1) in a WPF application. If I press that button on page1, how can I disable a button on Window1 ? Page 1 is shown in frame from Window1.
Thanks!
|
You need to create a delegate on page1
and access it on window1
|
|||
|
The Control struture is: window1 button2 Page1 button1 You want to disable button2 in window1 when clicking button2 in page1. In order to do that, you have some options:
|
|||
|