验证输入到DataGridView中的日期

时间:2018-10-01 19:46:36

标签: c# winforms validation datagridview

我正在尝试验证用户在Date中输入的DataGridViewCell值,如果该值与特定方案不匹配,它应该向用户显示一条消息

  

输入的值应匹配dd / MM / yyyy格式

我在CellValidating事件中尝试了以下代码

private void DGV_PatientSessions_CellValidating(object sender, DataGridViewCellValidatingEventArgs e)
{
    if (DGV_PatientSessions.Columns[e.ColumnIndex].Name == "DGV_PatientSessions_Date")
    {
        string DateValue;
        DateTime DateFormated;
        DateValue = DGV_PatientSessions.CurrentRow.Cells["DGV_PatientSessions_Date"].Value.ToString();
        if (DateTime.TryParseExact(DateValue, "dd/MM/yyyy", new CultureInfo("ar-SY"), DateTimeStyles.None, out DateFormated))
        {
            MessageBox.Show("done");
        }
    }
}

但是我仍然在下面收到消息错误

enter image description here

我尝试使用正则表达式,搜索时不推荐使用它,但它不起作用

string DateFormat;
DateFormat = DGV_PatientSessions.CurrentRow.Cells["DGV_PatientSessions_Date"].Value.ToString();
if(Regex.IsMatch(DateFormat, @"(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.](19|20)\d\d$"))
{
    MessageBox.Show("done");
}
else
{
    MessageBox.Show("value should match dd/MM/yyyy format);
}

1 个答案:

答案 0 :(得分:0)

如果使用e.Cancel = true;输入的数据无效,则需要取消编辑:

private void DGV_PatientSessions_CellValidating(object sender, DataGridViewCellValidatingEventArgs e)
{
    if (DGV_PatientSessions.Columns[e.ColumnIndex].Name == "DGV_PatientSessions_Date")
    {
        string DateValue;
        DateTime DateFormated;
        DateValue = DGV_PatientSessions.CurrentRow.Cells["DGV_PatientSessions_Date"].Value.ToString();
        if (DateTime.TryParseExact(DateValue, "dd/MM/yyyy", CultureInfo.InvariantCulture, DateTimeStyles.None, out DateFormated))
        {
            MessageBox.Show("done");
        } 
        else 
        {
            MessageBox.Show("value should match dd/MM/yyyy format");
            e.Cancel = true; // The important part
        }
    }
}