I have the following DataGridTextColumn:
<DataGridTextColumn Header="Example" IsReadOnly="True"
Binding="{Binding Ex, FallbackValue='ExampleValue'}" />
the itemSource of the dataGrid is an ObservableCollection of some class A(that has a string Ex field). I want Ex to be set to "ExampleValue", how do I do that?