如何格式化Windows Phone应用程序中的日期时间,如本机消息传递应用程序

时间:2013-04-04 03:34:41

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

Windows Phone 8中的本机消息传递应用程序显示如下日期时间:

4/3, 8:31p

12/25, 10:01a

当我使用String.Format(“{0:d} {0:t}”)格式化日期时间时,我得到了这些:

4/3/2013 8:31 PM

12/25/2012 10:01 AM

如何使其像原生邮件应用程序一样简洁?

1 个答案:

答案 0 :(得分:4)

此表示没有standard date and time format string

虽然你可以简单地使用它:

string.Format("{0:M/d, h:mmt}");

...当您的应用程序用于切换日期和月份顺序的文化时,它将无济于事。

最接近的解决方案可能是采用当前文化的格式字符串并进行相应修改,即:

var culture = (CultureInfo)CultureInfo.CurrentUICulture.Clone();
// Make the AM/PM designators lowercase
culture.DateTimeFormat.AMDesignator = culture.DateTimeFormat.AMDesignator.ToLower();
culture.DateTimeFormat.PMDesignator = culture.DateTimeFormat.PMDesignator.ToLower();

var dDateFormatPattern = culture.DateTimeFormat.ShortDatePattern;
var tDateFormatPattern = culture.DateTimeFormat.ShortTimePattern;

var dateCompact = dDateFormatPattern.Replace("yyyy", "")
    .Replace("MM", "M").Replace("dd", "d").Replace(" ", "")
    .Trim(culture.DateTimeFormat.DateSeparator.ToArray());

var timeCompact = tDateFormatPattern
    .Replace("hh", "h").Replace("tt", "t").Replace(" ", "");

Console.WriteLine(DateTime.Now.ToString(dateCompact + " " + timeCompact, culture));

>>> 4/4 3:03p

...或者,您可以只检查CultureInfo.CurrentCulture.DateTimeFormat.ShortDatePattern的值,并在D/M模式和M/D模式之间切换。它对所有文化都不是完美的,但至少当你遇到一种以你从未想到的方式形成日期和时间的文化时,你不会得到令人不快的惊喜!