I have a WPF TextBlock bound to a string using Dynamic resourse. If that string is null, I want the TextBlock to display binding value.
<TextBlock Text="{DynamicResource keyState}" >
if keyState=null, i want to display "keyState" as text.
Is there anyway to implement this in XAML?
Thanks in advance.