In XAML, if you insert
<TextBlock Text="Hello World" />
You will see the words "Hello World".
If you insert
<TextBlock Text="{Binding}" />
it will trigger the data binding functionality. But what if I really wanted the display text to be "{Binding}"?"
Are there the equivalent of escape characters in XAML strings?
Or is my only solution to do this:
<TextBlock>Binding</TextBlock>
Just curious.