In WPF, I know that for TextBlock when I want to append some "dynamic" string to a string I can do something like the following :
<TextBlock>
<Run Text ="static string"/>
<Run Text="{Binding dynamicstring}"/>
</TextBlock>
However, the same method doesn't work for TextBox, is there anyway to do the same thing with TextBox