I'm binding TextBlock.Visiblitiy to something, and I want to set the Binding.TargetNullValue to Collapsed, how can I do it in XAML?
TextBlock.Visiblitiy
Binding.TargetNullValue
Collapsed
This one How do I set TargetNullValue to a date? does not work in Silverlight. (No x:Static).
x:Static
This is working for me in SL4:
<TextBlock Text="Text" Visibility="{Binding Foo, TargetNullValue=Collapsed}"/>
Where Foo:
public Visibility? Foo { get; set; }
2.1m questions
2.1m answers
60 comments
57.0k users