Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use "real" CultureInfo.CurrentCulture in WPF Binding, not CultureInfo from IetfLanguageTag

In my case:

I have a TextBlock Binding to a property of type DateTime. I want it to be displayed as the Regional settings of the User says.

<TextBlock Text="{Binding Date, StringFormat={}{0:d}}" /> 

I am setting Language property as WPF XAML Bindings and CurrentCulture Display says:

this.Language = XmlLanguage.GetLanguage(CultureInfo.CurrentCulture.IetfLanguageTag); 

But with this line of code it just displays the text as the default format of CultureInfo with IetfLanguageTag of CurrentCulture says, not as the effective value selected in systems region settings says:

(e.g. for "de-DE" dd.MM.yyyy is used instead of selected yyyy-MM-dd)

Region settings: not the default but yyy-MM-dd is used

Is there a way Binding uses the correct format without defining ConverterCulture on every single Binding?

In code

string.Format("{0:d}",Date); 

uses the right Culture settings.

edit:

another way which doesn't work as desired (like this.Language = ... does):

xmlns:glob="clr-namespace:System.Globalization;assembly=mscorlib" 

and

<Binding Source="{x:Static glob:CultureInfo.CurrentCulture}"   Path="IetfLanguageTag"   ConverterCulture="{x:Static glob:CultureInfo.InvariantCulture}" /> 
like image 341
Markus k Avatar asked Apr 29 '11 11:04

Markus k


2 Answers

You can create a subclass of binding (e.g. CultureAwareBinding) which sets the ConverterCulture automatically to the current culture when created.

It's not a perfect solution, but it's probably the only one, since retroactively forcing Binding to respect the culture could break other code in WPF which depends on this behavior.

Let me know if you need more help!

like image 104
aKzenT Avatar answered Sep 22 '22 21:09

aKzenT


This is an extension of answer from aKzenT. They proposed that we should create a subclass of Binding class and set the ConverterCulture to CurrentCulture. Even though the answer is very straight forward, I feel some people may not be very comfortable implementing it, so I am sharing the code version of aKzenT's answer with an example of how to use it in XAML.

using System; using System.Globalization; using System.Windows.Data;  namespace MyWpfLibrary {     public class CultureAwareBinding : Binding     {         public CultureAwareBinding()         {             ConverterCulture = CultureInfo.CurrentCulture;         }     } } 

Example of how to use this in XAML

1) You need to import your namespace into your XAML file:

<Page     ...     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:myWpfLib="clr-namespace:MyWpfLibrary;assembly=<assembly_name>"     ... > 

2) Real world usage of the CultureAwareBinding

<Textblock Text="{myWpfLib:CultureAwareBinding Path=Salary, Source=Contact, StringFormat={}{0:C}}" /> 
like image 43
Parth Shah Avatar answered Sep 23 '22 21:09

Parth Shah