我有一个时间戳,我想知道如何检测时间戳中选定的时间是否比DateTime.Now
提前15分钟。
如果我将时间戳设置为9:15并且DateTime.Now
是9:31,我应该收到一条消息,我只能将时间设置为比实际时间提前15分钟。
答案 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;
}