up vote 11 down vote favorite
3
share [g+] share [fb]

How would one achieve mixing bound values with constant text in a WPF bound control?

For example, say I have a form displaying orders, and I want a label that displays text like "Order ID 1234".

I've tried things like:

text="Order ID {Binding ....}"

Is this achievable, or do I have to do something like having more than one label in a flow control?

link|improve this question

79% accept rate
feedback

4 Answers

up vote 14 down vote accepted

If you're using 3.5 SP1, you can use the StringFormat property on the binding:

<Label Content="{Binding Order.ID, StringFormat=Order ID \{0\}}"/>

Otherwise, use a converter:

<local:StringFormatConverter x:Key="StringFormatter" StringFormat="Order ID {0}" />
<Label Content="{Binding Order.ID, Converter=StringFormatter}"/>

With StringFormatConverter being an IValueConverter:

[ValueConversion(typeof(object), typeof(string))]
public class StringFormatConverter : IValueConverter
{
    public string StringFormat { get; set; }

    public object Convert(object value, Type targetType,
                          object parameter, CultureInfo culture) {
         if (string.IsNullOrEmpty(StringFormat)) return "";
         return string.Format(StringFormat, value);
    }


    public object ConvertBack(object value, Type targetType,
                              object parameter, CultureInfo culture)
    {
        throw new NotSupportedException();
    }

That'll do the trick.

[Edit : Change the Text property to Content]

link|improve this answer
1  
With the stringformat example, what happens if the string needs to contain a comma? Do you then have no choice but to go with the converter option? – Neil Barnwell Oct 13 '09 at 16:58
3  
AFAIK the label control does not have the Text property. You should bind to the Content property – Eduardo Molteni Sep 7 '10 at 3:25
feedback

The Binding.StringFormat property doesn't work on Labels, you need to use the ContentStringFormat property on the Label.
For example, the following sample will work:

<Label Grid.Row="0" Name="TitleLabel">
    <Label.Content>
        <Binding Path="QuestionnaireName"/>
    </Label.Content>
    <Label.ContentStringFormat>
        Thank you for taking the {0} questionnaire
    </Label.ContentStringFormat>
</Label>

While this sample will not:

<Label Grid.Row="0" Name="TitleLabel">
        <Label.Content>
            <Binding Path="QuestionnaireName" StringFormat="Thank you for taking the {0} questionnaire"/>
        </Label.Content>            
    </Label>
link|improve this answer
Sigh. Another arbitrary restriction imposed by WPF developers. – glebd Sep 16 '10 at 13:16
Any idea why Binding.StringFormat does not work? – Wouter Mar 7 '11 at 14:12
Since Label.Content is of type Object, the binding sees no need to convert and format the value as a string. – YotaXP Nov 13 '11 at 0:00
feedback

Often overlooked is simply chaining multiple textblocks together for example

<TextBlock Text="{Binding FirstName}" />
<TextBlock Text=" " />
<TextBlock Text="{Binding LastName}" />
link|improve this answer
feedback

Another approach is to use a single TextBlock with multiple Run elements within it:

<TextBlock><Run>Hello</Run><Run>World</Run></TextBlock>

.. but to bind to a element you need to use add a BindableRun class.

Update But there are some drawbacks to this technique ... see here

link|improve this answer
This one is the choice if you want also a different formatting (number in bold f.e.) – Sergey Aldoukhov Mar 20 '09 at 23:18
feedback

Your Answer

 
or
required, but never shown

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