Windows8格式化日期与时间
(2012-12-25 09:18:31)
//格式化日期与时间
private void Display_Click(object sender, RoutedEventArgs
e)
{
DateTime
dateTime = DateTime.Now;
DateTimeFormatter dateFormatter = new
DateTimeFormatter(YearFormat.Default, MonthFormat.Abbreviated,
DayFormat.Default, DayOfWeekFormat.Abbreviated);
string
curDate = dateFormatter.Format(dateTime);
DateTimeFormatter timeFormmater = new
DateTimeFormatter(HourFormat.Default,MinuteFormat.Default,
SecondFormat.Default);
string
curTime = timeFormmater.Format(dateTime);
}
|