验证从迄今为止

时间:2010-10-07 10:34:44

标签: winforms

我正在使用vs2010 C#

开发Windows窗体

我有2个日期时间选择器

1是fromDatePicker,另一个是ToDatePicker

我想验证toDate总是在日期之后是同一天

例如,如果从:2010年5月30日...到:2010年8月16日

向用户显示错误消息。

2 个答案:

答案 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控件上的日期吗?