尝试投射时获取System.FormatException

时间:2019-02-15 10:14:22

标签: c# winforms datagridview

我有一个在DataGridView中复制一行的功能,如下所示:

private void dgv_CellClick(object sender, DataGridViewCellEventArgs e)
{
    DataGridView dgv = sender as DataGridView;

    // If button clicked
    if (e.ColumnIndex == 0)
    {
        // Get values what you want to use
        var value1 = dgv.Rows[e.RowIndex].Cells[1].Value;
        var value2 = dgv.Rows[e.RowIndex].Cells[2].Value;

        // Insert a new row behind the click one
        dgv.Rows.Insert(e.RowIndex + 1);

        // Set the previously stored values
        dgv.Rows[e.RowIndex + 1].Cells[1].Value = value1;
        dgv.Rows[e.RowIndex + 1].Cells[2].Value = value2;
    }
}

现在,我想为一个特定的单元格编写一个函数,以使每次单击增加+ 1。例如:如果在Cell [2]中该值为1,则在添加的下一行中,该值应计为2、3,依此类推。我尝试使用+进行操作,但是收到一条错误消息,指出该运算符无法应用于对象类型。因此,我试图像这样投射特定的单元格:

 var value2 = Convert.ToInt32(dgv.Rows[e.RowIndex].Cells[2].Value);

但是现在我得到了SystemFormatException:输入字符串的格式不正确。 有什么想法吗?

非常感谢!

1 个答案:

答案 0 :(得分:0)

仅允许以下数值

private void dgv_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
{
    // Textbox columns
    if (dgv.CurrentCell.ColumnIndex == 2)
    {
        TextBox tb = e.Control as TextBox;
        if (tb != null)
        {
            tb.KeyPress += TextBox_KeyPress;
        }
    }
}

private void TextBox_KeyPress(object sender, KeyPressEventArgs e)
{
    // Only numeric characters allowed
    if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar))
    {
        e.Handled = true;
    }
}