I have a button on my form that should only be enabled when an item is selected in a treeview (or the listview in a tabitem).
When an item is selected, it's value is stored in a string member variable.
Can I bind the IsEnabled property of the button to the content of the member var? That is, if the member var is not empty, enable the button.
Similarly, when the content of the member var changes (set or cleared), the button's state should change.
Thanks for any insights...
|
1
|
|
|||
|
|
|
|
Since you're probably looking to bind the IsEnabled property of the button based on a string, try making a converter for it. Ie...
and the converter:
EDIT: Since the OP wanted to bind to a variable, something like this needs to be done:
Then, change the above binding expression to:
{Binding Path=SomeString, Converter={StaticResource mystringtoboolconverter}}
Note, you MUST implement INotifyPropertyChanged for your UI to be updated. |
||||||||||
|
|
|
Do you have a ViewModel holding your string property set as the DataContext of the View where you try to do this Binding? Then the following will work:
Then you should have done something like this in the code behind of the view:
And a Xaml example:
|
||||||
|
