Does WPF support multiple binding expressions in one statement?
Something along the lines of the following:
<TextBlock Text="{Binding Path=OrderID} shipped on {Binding Path=OrderDate}"/>
I’m guessing that it does but I think I just don’t have the correct syntax.
You have to use a MultiBinding with the StringFormat feature. Look at the docs for more info
To add support for forrmating specific sections of the textblock, use Inlines like so.