Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF format DateTime in TextBlock?

I have a TextBlock that is bound to a DateTime property. How do I configure the format of the date?

like image 478
Peter Avatar asked Aug 26 '09 07:08

Peter


3 Answers

There is a string format property available when you are declaring the binding:

<TextBox Text="{Binding Path=DateTimeValue, StringFormat=dd-MM-yyyy}" />

(You need to be on .NET 3.5 SP1 for this property to exist)

like image 59
Martin Harris Avatar answered Nov 16 '22 03:11

Martin Harris


If you want to use a common format string between bindings, you could declare the binding like this:

<Textbox Text={Binding Path=DateTimeValue, StringFormat={x:Static local:Constants.DateTimeUiFormat}} />

With your constants class like this:

public static class Constants
{
    public const string DateTimeUiFormat = "dd/MM/yyyy";

    //etc...
}
like image 38
Brian Hinchey Avatar answered Nov 16 '22 03:11

Brian Hinchey


May be helpful to someone:

<TextBlock Text="{Binding Source={x:Static sys:DateTime.Now},
           StringFormat='{}{0: Today is dddd, MMMM dd, yyyy, hh:mm:ss}'}"/>

or 24h and 2digits month and year format:

<TextBlock Text="{Binding Source={x:Static sys:DateTime.Now},
           StringFormat='{}{0: Today is dddd, MM.dd.yy, HH:mm:ss}'}"/>
like image 27
ZloyMakak Avatar answered Nov 16 '22 05:11

ZloyMakak