Closed RafaelSalguero closed 8 years ago
In XAML the equals sign is an special character on attribute values.
How to write the following expression?
Visibility ="{c:Binding Value == null}"
Thanks
Wrap constructor value 'path' in single quotes like this:
<CheckBox Content="Name is null" IsChecked="{c:Binding 'Name==null', Mode=OneWay}" Margin="0,0,0,5"/>
In XAML the equals sign is an special character on attribute values.
How to write the following expression?
Visibility ="{c:Binding Value == null}"
Thanks