我有一个ValueChanged事件,在其中检查日期并向用户显示一条消息,并将DateTimePicker的值设置为另一个值。这是事件:

private void dtpStartDate_ValueChanged(object sender, EventArgs e)
{
    if (frmDate.Value < this.minDate)
    {
        MessageBox.Show("Date not found");
        frmDate.Value = previousValue;
        return;
    }
}


在Windows 7中可以正常工作,但在Windows XP中两次显示该消息框。我该如何解决?

最佳答案

如果您不想花很多力气,那就很脏:)

private DateTime _lastDate;
private void dtpStartDate_ValueChanged(object sender, EventArgs e)
{
    if (_lastDate != frmDate.Value) {
        _lastDate = frmDate.Value;
        if (_lastDate < this.minDate)
        {
            MessageBox.Show("Date not found");
            frmDate.Value = previousValue;
            return;
        }
    }
}

关于c# - Windows XP中的ValueChanged事件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10123256/

10-17 00:53