My application loads all lines from resource dictionaries defined in separate XAML files. It is possible that the DynamicResource key DynamicResource not exist at run time.
<CheckBox Content="{DynamicResource myKeyThatIsMissing}"/>
A regular binding has a Fallback value that can be used as follows:
Text="{Binding StringToShow, FallbackValue=DefaultValue}
Is it possible to have a default Fallback value for a property set with DynamicResource , which is used if the resource key does not exist?
source share