从datetime.now检测15分钟的经过时间

时间:2013-06-29 07:15:07

标签: c# datetime timepicker

我有一个时间戳,我想知道如何检测时间戳中选定的时间是否比DateTime.Now提前15分钟。

如果我将时间戳设置为9:15并且DateTime.Now是9:31,我应该收到一条消息,我只能将时间设置为比实际时间提前15分钟。

2 个答案:

答案 0 :(得分:1)

您可以使用TimeSpan ..

假设你的datetimepicker是TimeOnly ..

TimeSpan difftime = DateTimePicker1.Subtract ( now() );

if (difftime.Minutes > 15)
{
    MessageBox.Show("Max 15 Minutes !"); 
}

如果您的datetimepicker包含日期,那么必须确保.Hours and .Days = 0

答案 1 :(得分:0)

只需使用

// In the timepicker's time-changed event
if (DateTime.Now.CompareTo(timepicker.Value) == 1 && DateTime.Now.Subtract(timepicker.Value).TotalMilliseconds > 15 * 60 * 1000)
{
     // Do stuff!
     MessageBox.Show("You can only set a max of 15 minutes ahead of the current time!");
     // Cancel the event / set the timepicker's value back to the current time / whatever you prefer
     // One option:
     timepicker.Value = DateTime.Now;
}