vote up 2 vote down star
2

How do I databind a single TextBlock to say "Hi, Jeremiah"?

<TextBlock Text="Hi, {Binding Name, Mode=OneWay}"/>

Looking for an elegant solution. What is out there? I'm trying to stay away from writing a converter for each prefix/suffix combination.

flag

79% accept rate
Looks like your accepted answer may be WPF only - you might remove the Silverlight tag. – James Cadd Jun 23 at 21:23

2 Answers

vote up 11 vote down check

If you've only got a single value you need to insert, you can use Binding's StringFormat property. Note that this requires .NET 3.5 SP1 (or .NET 3.0 SP2), so only use it if you can count on your production environment having the latest service pack.

<TextBlock Text="{Binding Name, Mode OneWay, StringFormat=Hi, {0}}"/>

If you wanted to insert two or more different bound values, I usually just make a StackPanel with Orientation="Horizontal" that contains multiple TextBlocks, e.g.:

<StackPanel Orientation="Horizontal">
    <TextBlock Text="Good "/>
    <TextBlock Text="{Binding TimeOfDay}"/>
    <TextBlock Text=", "/>
    <TextBlock Text="{Binding Name}"/>
    <TextBlock Text="!"/>
</StackPanel>
link|flag
1  
Make sure you've got the 3.5SP1 installed to use this. – rmoore Jun 23 at 19:31
Thank you! It worked superbly! – Jeremiah Jun 23 at 19:31
@rmoore: Good catch. I've edited my answer to make that stand out. – Joe White Jun 23 at 19:46
1  
For multiple bindings, you could also use StringFormat in a MultiBinding. <TextBlock> <TextBlock.Text> <MultiBinding StringFormat="{}{1},{0}"> <Binding Path="Prop1" /> <Binding Path="Prop2" /> </MultiBinding> </TextBlock.Text> </TextBlock> – rmoore Jun 23 at 19:58
Holy crap... knowing about StringFormat earlier would have been amazing. – Will Eddins Jun 23 at 20:09
show 3 more comments
vote up 0 vote down

I think this should do it.

<TextBlock>
    <TextBlock Text="Hi, " />
    <TextBlock Text="{Binding Name, Mode=OneWay}" />
</TextBlock>
link|flag
1  
Joe White's StringFormat solution is probably the way to go. I'd forgotten about that. – Gregory Higley Jun 23 at 19:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.