WPF Binding StringFormat Short Date String

前端 未结 7 1395
走了就别回头了
走了就别回头了 2020-11-29 19:14

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

I tried something like:



        
7条回答
  •  攒了一身酷
    2020-11-29 20:00

    Try this:

    
    

    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:

    
    

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

提交回复
热议问题