Windows Phone中的时间选择器格式

时间:2014-04-17 15:30:23

标签: c# xaml windows-phone-7 windows-phone-8 windows-phone

我有XAML代码

<toolkit:TimePicker ValueStringFormat="{}{0:H:m:ss}" Foreground="Black" BorderBrush="Black"/>

我想选择时间格式&#34;小时,分钟,秒钟&#34;但现在我可以选择&#34; 6.22 AM&#34;等时间。我该怎么办?

2 个答案:

答案 0 :(得分:0)

ShortTimePattern的默认值为{}{0:t}&#34; 6:22 AM&#34;正如你看到的。要轻松添加秒,只需通过大写&#34; T&#34;将其设为LongTimePattern。在相同的字符串中,为您提供{}{0:T};

ValueStringFormat="{}{0:T}"

你做得很好,很容易......

希望这会有所帮助,欢呼。

答案 1 :(得分:0)

AM / PM指示符是&#34; tt&#34;

A / P的短缺是&#34; t&#34;

see

<toolkit:TimePicker ValueStringFormat="{}{0:h:m:ss tt}" Foreground="Black" BorderBrush="Black"/>

或没有秒:

<toolkit:TimePicker ValueStringFormat="{}{0:h:m tt}" Foreground="Black" BorderBrush="Black"/>