This property is implemented on ItemsControl. I need to format or apply style for the string as Italic and grey color.
<ItemsControl ItemsSource="{Binding Source={StaticResource SettingsViewSource}, TargetNullValue= 'No setting available'}"
Background="Transparent"
HorizontalAlignment="Stretch"
Focusable="False">
Define and EmptyDataTemplate if you want to have more control like styling/formatting and switch the datatemplate on based on datatrigger.
For Example
Note: Use HasItems property to determine whether the ItemsControl contains items.