DataGridView验证&改变细胞价值

时间:2011-01-20 02:36:32

标签: c# datagridview validating

我想在验证时操作DataGridView中的单元格,这样如果用户输入的值对数据库无效,但很容易转换为有效数据,程序会将值更改为适当的值之一。

我能够正确验证我的值,但是当我尝试将其更改为有效的东西时,我得到了一个DataError。这是我的代码:

        private void unit_List_2_GroupsDataGridView_CellValidating(object sender, DataGridViewCellValidatingEventArgs e)
    {
        Console.WriteLine("Validating");
        DataGridViewColumn col = this.unit_List_2_GroupsDataGridView.Columns[e.ColumnIndex];
        DataGridViewCell cell = this.unit_List_2_GroupsDataGridView.Rows[e.RowIndex].Cells[e.ColumnIndex];
        if (col == this.batchDataGridViewTextBoxColumn && this.unit_List_2_GroupsDataGridView.IsCurrentCellInEditMode)
        {
            Console.WriteLine("   Batch Column");
            DataRow[] rows = label_EntryDataSet.viewJobBatchList.Select(String.Format("Job={0} AND Display='{1}'"
                , comboBox1.SelectedValue, e.FormattedValue));
            if (rows.Length == 1)
            {
                Console.WriteLine("      Auto Completed item from list: {0}", rows[0]["Batch"]);
                //e.Cancel = true;
                cell.Value = rows[0]["Batch"];
                //this.unit_List_2_GroupsDataGridView.EndEdit();
            }
            else
            {
                Console.WriteLine("     No Autocomplete!");
                int i = 0;
                if (!int.TryParse(e.FormattedValue.ToString(), out i))
                {
                    Console.WriteLine("         Not an integer either");
                    e.Cancel = true;
                }
            }
        }
    }

读取 cell.Value = rows [0] [“Batch”]; 的行没有按照我的预期行事。

2 个答案:

答案 0 :(得分:42)

CellValidating事件发生在DataGridView离开编辑模式之前;这是一个与编辑控件(DataGridView.EditingControl)相关/涉及的事件。您永远不应该尝试更改此事件的处理程序中的单元格值,因为除非您取消事件(在这种情况下用户陷入编辑模式),单元格值将立即设置为编辑控件中的值。活动结束。因此,这将撤消您在处理程序中执行的任何操作。

您需要做的是更改编辑控件中的值(记住不取消事件)。例如,对于DataGridViewTextBoxCell,您将使用以下内容而不是有问题的行:

unit_List_2_GroupsDataGridView.EditingControl.Text = Convert.ToString(rows[0]["Batch"]);

您应该会发现这可以解决您的问题。

答案 1 :(得分:4)

通常,每当您需要转换/更改单元格中的值时,最好使用CellParsing事件。在该事件中,您可以通过设置单元格或行的ErrorText值来指示用户的值无效。