1

我正在制作一个错误处理程序,当我输入无效的时间或日期格式(如 12:456 和 55-32-1986)时,它将激活。然后程序应该将单元格值更改回上一个值。

我正在使用 .NET 4.5,这是一个 winforms 应用程序

编码:

dataGridView2.DataError += dataGridView2_DataError;

private void dataGridView2_DataError(object sender, DataGridViewDataErrorEventArgs anError)
{
    // MessageBox.Show("Error happened " + anError.Context.ToString());

    if (anError.Context == DataGridViewDataErrorContexts.Commit)
    {
        MessageBox.Show("Commit error");
    }

    if (anError.Context == DataGridViewDataErrorContexts.CurrentCellChange)
    {
        MessageBox.Show("Cell change");
    }

    if (anError.Context == DataGridViewDataErrorContexts.Parsing)
    {
        MessageBox.Show("parsing error");
    }

    if (anError.Context == DataGridViewDataErrorContexts.LeaveControl)
    {
        MessageBox.Show("leave control error");
    }

    if ((anError.Exception) is ConstraintException)
    {
        DataGridView view = (DataGridView)sender;
        view.Rows[anError.RowIndex].ErrorText = "an error";
        view.Rows[anError.RowIndex].Cells[anError.ColumnIndex].ErrorText = "an error";

        anError.ThrowException = false;
    }

    if ((anError.Exception) is FormatException)
    {
        if (dataGridView2.CurrentCell == dataGridView2.CurrentRow.Cells[3])
        {
            MessageBox.Show("Please enter a valid time value" + prevTime);
            dataGridView2.CurrentCell.Value = prevTime;
            dataGridView2.EndEdit();
        }
        if (dataGridView2.CurrentCell == dataGridView2.CurrentRow.Cells[2])
        {
            MessageBox.Show("Please enter a valid date");
            dataGridView2.CurrentCell.Value = prevDate;
            dataGridView2.EndEdit();
        }
    }

    //cell types
    d.Tables.Add(booking);
        booking.Columns.Add("nr.", typeof(int));
        booking.Columns.Add("Name", typeof(string));
        booking.Columns.Add("Date", typeof(DateTime));
        booking.Columns.Add("Time", typeof(DateTime));

    //Datasource
    dataGridView2.DataSource = booking;
}

prevDate- 和 TimeValue 在 datagrid_onBeginEdit 中声明,以便我拥有这些值。

我有上一个值。代码从头到尾运行。但是从第 2 行开始,它不会以编程方式更改单元格的值。我只能手动进行,当代码无法更改值时,错误消息框会不断出现。datagridview 不是只读的。

细胞:nr。/ 姓名 / 日期 / 时间

任何帮助将不胜感激,在此先感谢。

编辑:我添加了事件处理程序的完整代码

PS。如果我不清楚某处,或者如果您需要更多信息,那么只需告诉您需要什么。

4

1 回答 1

3

您不需要自己保存 prevDate 和 prevTime,我已经尝试恢复这些值,但似乎我们无法更改它们(我仍然很高兴知道如何在这种情况下更改它们)。但是我在这里为您提供了最好的解决方案,我们只需要使用CancelEdit()DataGridView 的方法,它应该是您想要的,尽管它没有显示如何在您的问题中描述的上下文中更改单元格值。这是代码:

if ((anError.Exception) is FormatException)
{
    if (dataGridView2.CurrentCell == dataGridView2.CurrentRow.Cells[3])
    {
        MessageBox.Show("Please enter a valid time value" + prevTime);
        dataGridView2.CancelEdit();//Only this works
    }
    if (dataGridView2.CurrentCell == dataGridView2.CurrentRow.Cells[2])
    {
        MessageBox.Show("Please enter a valid date");
        dataGridView2.CancelEdit();//Only this works
    }
}

我希望它有帮助,我仍然对如何在这种情况下更改单元格值感到兴奋。如果我找到如何做到这一点,我会把它作为另一个答案发布给你。谢谢!

于 2013-06-03T18:31:53.300 回答