I have a question like this, I have two pages and have one button in each page, like this mainpage.xaml and second page.xaml, my button in mainpage was disabled with this code: <Button Name="one" IsEnabled="False" Content="Button" />
.
Now I want to enable this button with another button that placed in second page.xaml, how I can access the button in mainpage.xaml and make it enable?
I can't access one.isenabled=true
in second page, what can I do?