0

我有一个时间选择器,我想知道如何让它检测到时间选择器中选择的时间是否比DateTime.Now.

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

4

2 回答 2

1

您可以使用 TimeSpan ..

假设您的 datetimepicker 是 TimeOnly ..

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

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

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

于 2013-06-29T08:12:25.507 回答
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;
}
于 2013-06-29T07:16:53.267 回答