为什么要跳过行?

时间:2012-09-04 16:43:58

标签: c# winforms datagridview datagridviewtextboxcell

我有一个以这种方式填充的DataGridView:偶数行包含不由用户编辑的“常量”值。奇数行可由用户编辑,但只能包含0或1个字符。如果单元格包含值并且用户按下某个键,则应首先向下移动到下一个单元格,然后允许在该下一个单元格中输入该值。通过这种方式,用户可以继续按键,每次都会填充下面的单元格。

我有这段代码(基于David Hall的代码:How can I programmatically move from one cell in a datagridview to another?):

private void dataGridViewPlatypus_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
{
    int columnIndex = (((DataGridView)(sender)).CurrentCell.ColumnIndex);
    if (columnIndex % 2 == 1) {
        e.Control.KeyPress += TextboxNumeric_KeyPress;
    } 
}

private void TextboxNumeric_KeyPress(object sender, KeyPressEventArgs e)
{
    TextBox tb = sender as TextBox; 
    if (tb.TextLength >= 1)
    {
        dataGridViewPlatypus.CurrentCell = dataGridViewPlatypus[
            dataGridViewPlatypus.CurrentCell.ColumnIndex, 
            dataGridViewPlatypus.CurrentCell.RowIndex + 1];
    }
}

这在我第一次在已经有值的单元格中输入val时效果很好 - 它会向下移动到下一个单元格,然后按下后面的键输入值。然而,在那之后,它每次跳过一个单元格。 IOW,如果我首先在第5列第2行的单元格中输入“2”,它就会移到第3行(好!);然而,它移动到第5行,跳过第4行。在下一个按键上,它移动到第8行,跳过第6行和第7行,依此类推。

为什么会以这种方式行事,解决方案是什么?

更新

好的,根据LarsTech下面的答案,我现在有了这段代码:

private void dataGridViewPlatypus_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e) {
    int columnIndex = (((DataGridView)(sender)).CurrentCell.ColumnIndex);
    if (columnIndex % 2 == 1) {
        e.Control.KeyPress -= TextboxNumeric_KeyPress;
        e.Control.KeyPress += TextboxNumeric_KeyPress;
    }
}

private void TextboxNumeric_KeyPress(object sender, KeyPressEventArgs e) {
    const int LAST_ROW = 11;
    const int LAST_COL = 15;
    TextBox tb = sender as TextBox;
    if (tb.TextLength >= 1) {
        if (dataGridViewPlatypus.CurrentCell.RowIndex != LAST_ROW) {
            dataGridViewPlatypus.CurrentCell = dataGridViewPlatypus[
                dataGridViewPlatypus.CurrentCell.ColumnIndex,
                dataGridViewPlatypus.CurrentCell.RowIndex + 1];
        } else { // on last row
            if (dataGridViewPlatypus.CurrentCell.ColumnIndex != LAST_COL) {
                dataGridViewPlatypus.CurrentCell =
                    dataGridViewPlatypus[dataGridViewPlatypus.CurrentCell.ColumnIndex + 2, 0];
            } else // on last row AND last editable column
            {
                dataGridViewPlatypus.CurrentCell = dataGridViewPlatypus[1, 0];
            }
        }
    }
}

但是,现在的问题是,如果我在输入先前值的单元格中,则不会使用输入的新值覆盖旧值。那么有没有办法在这个单元格中不输入另一个值,同时允许新值替换单元格中的现有值?

1 个答案:

答案 0 :(得分:1)

您正在添加越来越多的按键事件:

e.Control.KeyPress += TextboxNumeric_KeyPress;

不删除之前的按键事件。所以它多次调用它。

尝试将其更改为以下内容:

if (columnIndex % 2 == 1) {
  e.Control.KeyPress -= TextboxNumeric_KeyPress;
  e.Control.KeyPress += TextboxNumeric_KeyPress;
}