我正在使用vs2010 C#
开发Windows窗体我有2个日期时间选择器
1是fromDatePicker,另一个是ToDatePicker
我想验证toDate总是在日期之后是同一天
例如,如果从:2010年5月30日...到:2010年8月16日
向用户显示错误消息。
答案 0 :(得分:1)
您可以对“DateTimes”
进行比较if (toDate < fromDate)
{
MessageBox.Show("To date is before from date");
}
如果您不担心时间部分,请使用Date
属性:
if (toDate.Date < fromDate.Date)
{
MessageBox.Show("To date is before from date");
}
答案 1 :(得分:0)
您可以将toDate控件的minimumDate属性设置为fromDate控件上的日期吗?