vote up 2 vote down star

Hi

In WPF 3.5SP1 i use the last feature StringFormat in DataBindings:

 <TextBlock Text="{Binding Path=Model.SelectedNoteBook.OriginalDate, StringFormat='f'}"
                                   FontSize="20"
                                   TextTrimming="CharacterEllipsis" />

The problem i face is that the date is always formated in English...althought my system is in French ? How can i force the date to follow system date ?

thankd Jonathan

flag

2 Answers

vote up 5 vote down

// Ensure the current culture passed into bindings is the OS culture. By default, WPF uses en-US as the culture, regardless of the system settings.

FrameworkElement.LanguageProperty.OverrideMetadata( typeof(FrameworkElement), new FrameworkPropertyMetadata( XmlLanguage.GetLanguage(CultureInfo.CurrentCulture.IetfLanguageTag)));

From Creating an Internationalized Wizard in WPF

link|flag
Yea this is quite annoying. +1 – siz Feb 6 at 15:56
vote up 0 vote down

Have you tried D?

Represents a custom date and time format string defined by the current LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy". MSDN Documentation

link|flag

Your Answer

Get an OpenID
or

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