WPF绑定StringFormat短日期字符串


88

我想在WPF中使用短日期命名的字符串格式。

我尝试了类似的东西:

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

这该怎么做?

Answers:


176

试试这个:

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

这对文化敏感,需要.NET 3.5 SP1或更高版本。

注意:这是区分大小写的。“ d”是短日期格式说明符,而“ D”是长日期格式说明符

在“标准日期和时间格式字符串”的“ MSDN”页面上,有完整的字符串格式列表,并且对此MSDN博客文章中的所有选项都有完整的说明。

但是,这样做有一个陷阱-除非您自行将区域性设置为正确的值,否则它始终以美国格式输出日期。

如果未设置此属性,则绑定引擎将使用绑定目标对象的Language属性。在XAML中,如果已明确设置,则默认为“ en-US”或从页面的根元素(或任何元素)继承该值。

资源

一种方法是在后面的代码中(假设您已将线程的区域性设置为正确的值):

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

另一种方法是在绑定中设置转换器区域性:

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

尽管这不允许您本地化输出。


谢谢!你说对了!当我问我想到什么是短日期字符串格式时,在哪里可以找到字符串格式列表,我也喜欢您用StringFormat = d进行回答。非常清晰完整。
托尼

不管文化设置如何,这总是输出美国格式吗?
CRice

@CRice-是的-出于某些原因-您已自行设置文化。
克里斯·弗雷德

1
谢谢,当UI“ d”输出与同一日期对象的xaml.cs“ d”不同时,这非常糟糕。
CRice

引用WPF文化错误,我只添加this.Language = System.Windows.Markup.XmlLanguage.GetLanguage(System.Globalization.CultureInfo.CurrentCulture.IetfLanguageTag); 在每个窗口的initializecomponent之后;
peterG

53

或将其用于英语(或将其混合以用于自定义)格式:

StringFormat='{}{0:dd/MM/yyyy}'

2
您也可以在绑定中使用'ConverterCulture ='-需要一个值来表示格式。(ConverterCulture ='en-GB'是英国)。
否则

这是解决这个问题的最好,最简单的方法
史蒂文·史蒂芬(Steven)

干杯史蒂文!我也击败了ConverterCulture附加组件的“获奖”答案……但是就这样吧。
否则

27

使用StringFormat属性(或ContentStringFormatonContentControl及其衍生物,例如Label)。

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

请注意,{}在标准String.Format位置参数表示法之前,允许使用标记扩展语言对括号进行转义。


4
{}会允许你使用StringFormat='{}Created Date:{0:d}',否则会产生意想不到的效果。
褐色怪物

12

我发现一些DateTime StringFormat示例有用。从C#示例中取消

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

5

请注意字符串格式的单引号。这不起作用:

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

虽然这样做:

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

4

只需使用:

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

4

如果要添加带有值的字符串,请使用以下命令:

<TextBlock Text="{Binding Date, StringFormat= 'Date : {0:d}'}" />
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.