You can use the StringFormat property of the binding:
<TextBlock Text="{Binding Title, StringFormat=This is {0}}"></TextBlock>
Check out this blog post for more information: WPF String.Format in XAML with the StringFormat attribute.
You can use the StringFormat property of the binding:
<TextBlock Text="{Binding Title, StringFormat=This is {0}}"></TextBlock>
Check out this blog post for more information: WPF String.Format in XAML with the StringFormat attribute.