114

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?

ChrisF
  • 134,786
  • 31
  • 255
  • 325
Tony
  • 16,527
  • 15
  • 80
  • 134

8 Answers8

208

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.

ChrisF
  • 134,786
  • 31
  • 255
  • 325
  • does this always output US format regardless of culture settings? – CRice Aug 22 '14 at 06:14
  • 1
    @CRice - yes it does - for some reason - you have set the culture yourself. – ChrisF Aug 22 '14 at 07:42
  • 2
    Thanks, pretty bad when the UI "d" outputs different to the xaml.cs "d" of the same date object. – CRice Aug 22 '14 at 07:57
  • 1
    ref the WPF culture bug, I just add this.Language = System.Windows.Markup.XmlLanguage.GetLanguage(System.Globalization.CultureInfo.CurrentCulture.IetfLanguageTag); after initializecomponent in every window; – peterG May 27 '15 at 13:34
  • I added [an answer](https://stackoverflow.com/a/74551502/6803297) that implements a simple `CultureAwareBinding` to help with this issue. – Amir Mahdi Nassiri Nov 23 '22 at 18:29
66

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

StringFormat='{}{0:dd/MM/yyyy}'
else
  • 872
  • 6
  • 15
  • 2
    You can also use 'ConverterCulture=' in your binding - which requires a value to indicate the format. (ConverterCulture='en-GB' is Great Britain). – else Jan 07 '14 at 15:35
33

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.

user7116
  • 63,008
  • 17
  • 141
  • 172
20

Some DateTime StringFormat samples I found useful. Lifted from C# Examples

DateTime dt = new DateTime(2008, 3, 9, 16, 5, 7, 123);

String.Format("{0:y yy yyy yyyy}", dt);  // "8 08 008 2008"   year
String.Format("{0:M MM MMM MMMM}", dt);  // "3 03 Mar March"  month
String.Format("{0:d dd ddd dddd}", dt);  // "9 09 Sun Sunday" day
String.Format("{0:h hh H HH}",     dt);  // "4 04 16 16"      hour 12/24
String.Format("{0:m mm}",          dt);  // "5 05"            minute
String.Format("{0:s ss}",          dt);  // "7 07"            second
String.Format("{0:f ff fff ffff}", dt);  // "1 12 123 1230"   sec.fraction
String.Format("{0:F FF FFF FFFF}", dt);  // "1 12 123 123"    without zeroes
String.Format("{0:t tt}",          dt);  // "P PM"            A.M. or P.M.
String.Format("{0:z zz zzz}",      dt);  // "-6 -06 -06:00"   time zone
Telos
  • 1,039
  • 1
  • 12
  • 20
16

Be aware of the single quotes for the string format. This doesn't work:

    Content="{Binding PlannedDateTime, StringFormat={}{0:yy.MM.dd HH:mm}}"

while this does:

    Content="{Binding PlannedDateTime, StringFormat='{}{0:yy.MM.dd HH:mm}'}"
pawellipowczan
  • 500
  • 5
  • 11
6

If you want add a string with the value use this:

<TextBlock Text="{Binding Date, StringFormat= 'Date : {0:d}'}" />
Anurag
  • 557
  • 6
  • 14
6

Just use:

<TextBlock Text="{Binding Date, StringFormat=\{0:d\}}" />
as-cii
  • 12,819
  • 4
  • 41
  • 43
0

To add to Chris' answer, I implement my own simple CultureAwareBinding in this way:

public class CultureAwareBinding : Binding
{
    public CultureAwareBinding()
    {
        ConverterCulture = CultureInfo.CurrentCulture;
    }
}

And use it in this way in XAML:

<TextBlock 
    Text="{viewHelpers:CultureAwareBinding Path=ActivationDate, StringFormat=d}"/>

Assuming that the CultureAwareBinding resides in the viewHelpers xmlns.

This way, I ensure that the StringFormat=d is using the correct CultureInfo of the system.

Amir Mahdi Nassiri
  • 1,190
  • 13
  • 21