我有一个日期时间,我想显示从DateTime.Now
到收到的日期时间的差异并绑定它。结果应该是这样的:
1d 15h 13m 7s
最好的方法是什么? StringFormat
? IValueConverter
?
答案 0 :(得分:4)
我建议使用Timespans ToString
方法和custom TimeSpan format strings
如果您还不知道时间跨度,则设计用于测量这样的时间间隔,并且可以通过从另一个日期中减去一个日期来方便地获得。
var startDate = new DateTime(2013,1,21);
var currentDate = DateTime.Now;
TimeSpan interval = currentDate - startDate;
string intervalInWords = String.Format("{0:%d} days {0:%h} hours {0:%m} minutes {0:%s} seconds", interval);
Console.WriteLine(intervalInWords);
这将打印出类似
的内容267天10小时45分21秒
正如评论中所指出的那样,因为这些日期时间可能处于不同的时区/夏令时,所以您应该非常小心地使用这种技术。如果可行,那么使用全年一致的UTCtime应该足够了。通常,最好的策略是将所有日期时间保存为UTC以及时区/偏移量(如果需要),然后如果需要在特定时区偏移转换显示。
答案 1 :(得分:0)
使用TimeSpan
示例:强>
DateTime oldDate = new DateTime(2002,7,15);
DateTime newDate = DateTime.Now;
// Difference in days, hours, and minutes.
TimeSpan ts = newDate - oldDate;
// Difference in days.
int differenceInDays = ts.Days;
现在您可以根据您的要求进行更改。
答案 2 :(得分:0)
你可以使用TimeSpan,也可以看看[这里] [1]
[1]:Showing Difference between two datetime values in hours我建议你通过TimeSpan。
DateTime startDate = Convert.ToDateTime(2008,8,2);
DateTime endDate = Convert.ToDateTime(2008,8,3);
TimeSpan duration = startDate - endDate;
答案 3 :(得分:0)
创建一个属于DateTime类型的 DateProp 属性,并将其绑定到XAML上,并假设您的属性为Other_date_here,将其初始化为:
DateProp = DateTime.Now.Subtract(Other_date_here);
最后,在您的XAML上,绑定它并设置如下格式:
Text =“{Binding Date,StringFormat = d day H hours m minutes s seconds}”
(或您喜欢的任何其他格式:)。
答案 4 :(得分:0)
从格式化的角度来看,其他答案是正确的,但只是为了解决WPF角度,我猜你想要更新标签/文本框,以便它始终包含准确的持续时间?
如果是这样,您可以使用计时器和调度程序执行此操作。
计时器代码:
//duration in milliseconds, 1000 is 1 second
var timer = new Timer(1000);
timer.Elapsed += timer_Elapsed;
timer.Start();
计时器已用完代码:
//this is set elsewhere
private readonly DateTime _received;
void timer_Elapsed(object sender, ElapsedEventArgs e)
{
Application.Current.Dispatcher.Invoke(
DispatcherPriority.Normal,
new Action(()
=> //replace label1 with the name of the control you wish to update
label1.Content =
string.Format("{0:%d} days {0:%h} hours {0:%m} minutes {0:%s} seconds"
, (DateTime.Now - _received))));
}