DataGridView - 单元验证 - 防止CurrentRow / Cell更改

时间:2013-04-10 07:25:53

标签: c# winforms validation

我有WinForms DataGridView,源设置为SortableBindingList。在这种形式中,有Comment列,我需要阻止用户插入一些字符,从而进行验证。

我想要做的是,每当用户输入无效值时,系统会通知他(OnNotification( 'You entered wrong comment');)并强迫他/她保持编辑模式。

到目前为止,我构建了这样的解决方案:

void MyDataGridView_CellEndEdit( object sender, DataGridViewCellEventArgs e )
{
    if (e.ColumnIndex == ColumnComment.Index) {
        object data = Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
        if( (data != null) && (!CommentIsValid( data.ToString()))){
            CurrentCell = Rows[e.RowIndex].Cells[e.ColumnIndex];
            BeginEdit( true );

            // My notification method
            OnNotification( String.Format( "Comment `{0}` contains invalid characters) );
            return;
        }
    }
}

我有以下问题:

  • OnCellValidating仅在整个表单关闭或当前行更改时触发,而不是在我完成单个单元格的编辑后触发,因此我将检查{{1} }。
  • 当我使用CellEndEdit / Enter结束编辑时,它会按预期和期望运行。
  • 当我使用鼠标并单击另一行时,单元格保持编辑模式,但另一行被选中。
  • 当我尝试使用Esc(显示无效评论的通知)然后Enter(取消编辑)时,Esc使用值推送(因为编辑模式已经完成。)

所以我的问题是

  • 如何在每个单元格编辑后触发Enter,而不是在表单关闭时
  • 即使点击鼠标后,如何阻止CellValidatingCurrentRow更改?
  • 如何强制单元格保持处于编辑模式?

3 个答案:

答案 0 :(得分:1)

  

当我使用鼠标并单击另一行时,单元格保持编辑模式,但另一行被选中。

在这里,我将使用全局布尔值bool isInvalidState和一个全局DataGridViewCell = invalidCell对象。在默认状态下,您可以设置isInvalidState = falseinvalidCell = null。然后使用

private bool OnNotification(string cellValue)
{
    // Check for error.
    if (error)
        return false;
}

然后在上面的方法

void MyDataGridView_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
    if (e.ColumnIndex == ColumnComment.Index) {
        object data = Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
        if((data != null) && (!CommentIsValid(data.ToString()))){
            CurrentCell = Rows[e.RowIndex].Cells[e.ColumnIndex];
            BeginEdit(true);

            // My notification method
            isInvalidState = OnNotification(
                String.Format("Comment `{0}` contains invalid characters));
            if (isInvalidState)
                invalidCell = MyDataGridView[e.RowIndex, e.ColumnIndex];
            return;
        }
    }
}

现在,在您的CellContentClick上结束一个事件DataGridView并检查isInvalidState == true是否

private void MyDataGridView_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
    if (isInvlaidState)
    {
        isInvalidState = false;
        MyDataGridView.CurrentCell = invalidCell;
        invalidCell = null;
        return;
    }
    // Do other stuff here.
}
  

当我尝试使用Enter(显示无效注释的通知)和Esc(取消编辑)时,它使用Enter推送的值(因为编辑模式已完成)。

我不确定这个问题;您可能需要处理KeyDown事件并捕获转义键 - 以不同方式处理它。

我希望这会有所帮助。

答案 1 :(得分:0)

尝试这样的事情。它应该工作。

private void datagridview1_dataGridview_CellValidating
(object sender, DataGridViewCellValidatingEventArgs e) 
{
    if (datagridview1_dataGridview.Rows[e.RowIndex].Cells[2].Value.Equals(""))
    {
         MessageBox.Show("Product name should not be empty", "Error");
         datagridview1_dataGridview.CurrentCell = datagridview1_dataGridview.Rows[e.RowIndex].Cells[2];
         datagridview1_dataGridview.CurrentCell.Selected = true;
    }
}

答案 2 :(得分:0)

不幸的是,MoonKnight的解决方案对我来说并不完全有效,因为CellContentClick事件处理程序中的代码从未将控件设置回正在验证其值的单元格,当它具有无效的值。尽管如此,考虑到他使用全局变量isInvalidStateinvalidCell的宝贵提示帮助我构建了以下解决方案,该解决方案完全按照OP中的要求工作。

以正确的方式使用CellValidatingCellValidated的组合解决了以下问题:

CellValidating事件处理程序中进行数据验证。设置isInvalidState标记和cellWithInvalidUserInput变量(注意:我将invalidCell重命名为cellWithInvalidUserInput):

private void MyDataGridView_CellValidating(object sender, DataGridViewCellValidatingEventArgs e)
{
    var cellUnderConsideration = MyDataGridView.Rows[e.RowIndex].Cells[e.ColumnIndex];

    if (!ValidateCurrentCellValue(cellUnderConsideration)) 
    {               
       OnNotification( String.Format( "Comment `{0}` contains invalid characters) );
       //Or MessageBox.Show("your custom message");

       isInvalidState = true;
       cellWithInvalidUserInput = cellUnderConsideration;
       e.Cancel = true;                    
    }
}

数据验证功能:

bool isInvalidState;
DataGridViewCell cellWithInvalidUserInput;
private bool ValidateCurrentCellValue(DataGridViewCell cellToBeValidated)
{
    //return 'true' if valid, 'false' otherwise
}

CellValidated事件处理程序中的UI控件执行所需的操作:

private void MyDataGridView_CellValidated(object sender, DataGridViewCellEventArgs e)
{
    if (isInvalidState)
    {
        isInvalidState = false;

        if (cellWithInvalidUserInput != null && cellWithInvalidUserInput.RowIndex > -1)
        {
            MyDataGridView.CurrentCell = cellWithInvalidUserInput;
            MyDataGridView.CurrentCell.Selected = true;
            MyDataGridView.BeginEdit(true);
        }

        cellWithInvalidUserInput = null;
    }
}