#765 – WPF Data Binding Ignores CurrentCulture
February 27, 2013 5 Comments
Using the ToString method on numeric and date-based types from within your code, the output will reflect the current culture, as stored in the CurrentCulture property of the current thread.
When the data binding mechanism in WPF converts numeric or date-based data to a string, however, it doesn’t automatically use the current culture. Instead, you must set the Language property of the FrameworkElement where the binding is occurring. You typically set this property based on the CurrentCulture property of the current thread. You can set the Language property of the topmost user-interface element, so that all of the other elements inherit the value.
public MainWindow() { InitializeComponent(); this.DataContext = this; this.Language = XmlLanguage.GetLanguage(CultureInfo.CurrentCulture.IetfLanguageTag); }
We can now do binding as follows (where BoundDate property is of type DateTime):
<TextBlock Text="{Binding BoundDate, StringFormat=d}"/>
Now if we run with the region set to French (France), we see: