处理DataGridView中的Enter键

时间:2016-11-13 20:06:33

标签: c# datagridview

我有一个有5列的datagridview。 datagridview中的列是[商品代码,描述,数量,价格和价格;总]。

应该如何运作: 当用户输入项目代码时,应从数据库中获取描述和价格,并在各自的字段中显示结果。然后用户输入数量。

我想要什么: 我希望当用户在第1列(项目代码)中输入值时,要选择的下一个单元格应该是第3列(数量)。然后,如果输入数量并且用户按下回车按钮,则选择的下一个单元格应该是下一行的第一列(项目代码)。

问题: 我尝试了几个代码,但它不起作用。问题是当在第1列(项目代码)中输入项目代码时,下一个单元格的位置是第3列(数量)的第2行。它应该移动到同一行的第3列(Quantity),即第1行

以下是我使用过的代码:

private void dataGridView1_CellEnter(object sender, DataGridViewCellEventArgs e)
    {
        currentRow = dataGridView1.CurrentCell.RowIndex;
        currentColumn = dataGridView1.CurrentCell.ColumnIndex;

    }

private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
    {

        if (currentColumn == dataGridView1.Columns.Count - 5)
        {                
            dataGridView1.CurrentCell = dataGridView1[currentColumn + 2, currentRow];

        }
        else
        {
            dataGridView1.CurrentCell = dataGridView1[currentColumn - 2, currentRow + 1];
        }
    }

1 个答案:

答案 0 :(得分:0)

感谢this帖子。

我编辑了一下,这是我的代码。

 protected override bool ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData)
    {
        icolumn = dataGridView1.CurrentCell.ColumnIndex;
        irow = dataGridView1.CurrentCell.RowIndex;
        int i = irow;
        if (keyData == Keys.Enter)
        {
            if (icolumn == dataGridView1.Columns.Count - 5)
            {
                   dataGridView1.CurrentCell = dataGridView1[icolumn + 2, irow];
            }
            else
            {
                dataGridView1.CurrentCell = dataGridView1[icolumn - 2, irow + 1];
            }
           return true;
        }


        return base.ProcessCmdKey(ref msg, keyData);
    }