I have some controls which I need to hide or disable based on results of some calculations. I'd like to bind IsEnabled or IsVisible property to a result of some method or property get of parent form class. Something like this:
<TabItem Name="MyTab" Header="This should be enabled when result is 2" IsEnabled="{Binding MyMethod}">
<!--Some other stuff-->
</TabItem>
and in the code behind:
public bool MyMethod()
{
return _valueA + _valueB == 2;
}
Can you help me find a proper way to achieve this, please?
Thx, JiKra
You may need to use a
MultiBinding
:In your ViewModel, you should have the following (assuming your ViewModel implements
INotifyPropertyChanged
):And same for
ValueB
, which would allow WPF to update theBinding
every time eitherValueA
orValueB
changesYour converter should look like this:
This would allow you to have one external method defined in the Converter, which will be called again every time ValueA or ValueB would change.
I'd say that's all you need =)