繁体   English   中英

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

[英]DataGridView - cell validation - prevent CurrentRow/Cell change

我有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 ,而不是在我完成单个单元格的编辑之后才触发,因此我将检查置于CellEndEdit
  • 当我使用Enter / Esc结束编辑时,它可以按预期和期望的方式工作。
  • 当我使用鼠标并单击到另一行时,单元格保持在编辑模式,但是另一行被选中。
  • 当我尝试使用Enter (在无效评论上显示通知),然后使用Esc (取消编辑)时,它将使用Enter 推入的值(因为编辑模式已完成)。

所以我的问题是

  • 如何在每次单元格编辑后触发CellValidating ,而不是在窗体关闭时触发
  • 即使单击鼠标后,如何防止CurrentRowCurrentCell更改?
  • 如何强制单元格保持在编辑模式?

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

在这里,我将使用全局布尔值, 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;
        }
    }
}

现在,在DataGridView上连接一个事件CellContentClick并检查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事件并捕获转义键-以不同的方式处理它。

我希望这有帮助。

尝试这样的事情。 它会工作。

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;
    }
}

不幸的是,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;
    }
} 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM