Is there a way to set a Label's Content
property to both a Binding Expression AND a static string value? I want to be able to display something like this:
"Current Value: [Value From Binding]"
I was thinking something like this would work, but apparently it doesn't:
<Label Content="Current Value: {Binding ElementName=SomeTextBox, Path=Content}"/>
Thanks in advance!