Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF Binding StringFormat Short Date String

Tags:

binding

wpf

xaml

I would like to use Short Date named string format in WPF.

I tried something like:

<TextBlock Text="{Binding Date, StringFormat='Short Date'}" />

How to do this?

like image 432
Tony Avatar asked Feb 18 '11 20:02

Tony


3 Answers

Try this:

<TextBlock Text="{Binding PropertyPath, StringFormat=d}" />

which is culture sensitive and requires .NET 3.5 SP1 or above.

NOTE: This is case sensitive. "d" is the short date format specifier while "D" is the long date format specifier.

There's a full list of string format on the MSDN page on Standard Date and Time Format Strings and a fuller explanation of all the options on this MSDN blog post

However, there is one gotcha with this - it always outputs the date in US format unless you set the culture to the correct value yourself.

If you do not set this property, the binding engine uses the Language property of the binding target object. In XAML this defaults to "en-US" or inherits the value from the root element (or any element) of the page, if one has been explicitly set.

Source

One way to do this is in the code behind (assuming you've set the culture of the thread to the correct value):

this.Language = XmlLanguage.GetLanguage(Thread.CurrentThread.CurrentCulture.Name);

The other way is to set the converter culture in the binding:

<TextBlock Text="{Binding PropertyPath, StringFormat=d, ConverterCulture=en-GB}" />

Though this doesn't allow you to localise the output.

like image 173
ChrisF Avatar answered Oct 16 '22 17:10

ChrisF


Or use this for an English (or mix it up for custom) format:

StringFormat='{}{0:dd/MM/yyyy}'
like image 63
else Avatar answered Oct 16 '22 16:10

else


Use the StringFormat property (or ContentStringFormat on ContentControl and its derivatives, e.g. Label).

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

Note the {} prior to the standard String.Format positional argument notation allows the braces to be escaped in the markup extension language.

like image 31
user7116 Avatar answered Oct 16 '22 16:10

user7116