I'm using WPF, and I have a form, on which there are many textboxes, buttons and whatnot.
For a specific reason I need that whole form to be disabled, which I managed with the code below -
public WPForm() //constructor
{
this.IsEnabled = false;
}
But, I have one button that sends me back to another form, which I need to be enabled (clickable), and what I have tried is simply setting it like this -
public WPForm() //constructor
{
this.IsEnabled = false;
btnBack.IsEnabled = true;
}
And this does basically nothing, so my question is, what else do I need to do in order to make it enabled?