vote up 2 vote down star
1

I know that WPF 3.5 SP1 supports a StringFormat in a binding, but can Silverlight do the same? I thought it could, but damned if I can make it work!

Here's a snippet of my XAML:

<TextBlock Grid.Row="0" Grid.Column="1" Text="{Binding StartTime, StringFormat=t}" />

It compiles OK, but I get a runtime error when it gets to the browser...

flag

60% accept rate

2 Answers

vote up 2 vote down check

It does not but you can use a Value Converter and specify the ConverterParamenter in the binding. You'll have to create your own Value Converter by deriving a class from IValueConverter like I've shown here. Michael

link|flag
vote up 0 vote down

Thanks Michael.

Yes, I've already gone down the IValueConverter route.

It just gets a little confusing when working in both WPF and Silverlight as to what's supported in each environment! :-)

link|flag

Your Answer

Get an OpenID
or

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