如何在DataGridview CalendarColumn中启用NULL值选择

时间:2010-07-08 06:08:50

标签: datagridview datagridviewcolumn

我有一个DataGridView CalendarColumn。默认情况下,如果它在数据库表中绑定的列为NULL,则显示当前的列,但我也要求它也只是NULL。

例如,如果该特定日期列的数据,我希望用户能够使Date Cell为空(NULL),但我找不到要设置的属性来实现此目的。任何想法,都可以在Datagridview的Calendercolumn中实现这种行为

2 个答案:

答案 0 :(得分:1)

public object EditingControlFormattedValue {
    get {
        if (this.ShowCheckBox && !this.Checked) {
            return String.Empty;
        } else {
            if (this.Format == DateTimePickerFormat.Custom) {
                return this.Value.ToString();
            } else {
                return this.Value.ToShortDateString();
            }
        }
    }
    set {
        string newValue = value as string;
        if (!String.IsNullOrEmpty(newValue)) {
            this.Value = DateTime.Parse(newValue);
        } else if (this.ShowCheckBox) {
            this.Checked = false;
        }
    }
}

答案 1 :(得分:0)

ctl.ShowCheckBox = this.isNullable;
if (this.Value != null && this.Value != DBNull.Value) {
    if (this.Value is DateTime) {
        ctl.Value = (DateTime)this.Value;
    } else {
        DateTime dtVal;
        if (DateTime.TryParse(Convert.ToString(this.Value), out dtVal)) ctl.Value = dtVal;
    }
    if (this.isNullable) ctl.Checked = true;
} else if (this.isNullable) {
    ctl.Checked = false;
}