DevExpress中获取GridView的单元格控件

发布于 2024-08-17 02:15:54 字数 91 浏览 1 评论 0原文

我有一个 GridView,其中有一列 RepositoryItemCheckEdit 作为 ColumnEdit。我想仅针对一行禁用此控件。我该怎么做?有什么建议吗?

I have a GridView that has a column with RepositoryItemCheckEdit as ColumnEdit. I want to disable this control for just one row. How can I do this? Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

枉心 2024-08-24 02:15:54

我已经找到了解决问题的方法。

gridView1.CustomRowCellEditForEditing += OnCustomRowCellEditForEditing;

private void OnCustomRowCellEditForEditing(object sender, CustomRowCellEditEventArgs e)
{
    if (e.Column.FieldName != "MyFieldName") return;
        *code here*
        e.RepositoryItem.ReadOnly = true;
}

I have found a solution to the problem.

gridView1.CustomRowCellEditForEditing += OnCustomRowCellEditForEditing;

private void OnCustomRowCellEditForEditing(object sender, CustomRowCellEditEventArgs e)
{
    if (e.Column.FieldName != "MyFieldName") return;
        *code here*
        e.RepositoryItem.ReadOnly = true;
}
千纸鹤带着心事 2024-08-24 02:15:54

您可以通过处理 CustomRowCellEdit 使编辑器只读:

private void gridView1_CustomRowCellEdit(object sender, CustomRowCellEditEventArgs e)
{
    if(code goes here)
        e.RepositoryItem.ReadOnly = true;
}

您还可以通过处理 ShowingEditor 阻止显示编辑器:

private void gridView1_ShowingEditor(object sender, CancelEventArgs e)
{
    if (code goes here)
        e.Cancel = true;
}

you can make the editor read only by handling CustomRowCellEdit:

private void gridView1_CustomRowCellEdit(object sender, CustomRowCellEditEventArgs e)
{
    if(code goes here)
        e.RepositoryItem.ReadOnly = true;
}

you can also prevent the editor from being show by handling ShowingEditor:

private void gridView1_ShowingEditor(object sender, CancelEventArgs e)
{
    if (code goes here)
        e.Cancel = true;
}
简单 2024-08-24 02:15:54

在继承DataGridViewColum的类中重写方法InitializeEditingControl
它有参数 rowIndex 写这样的东西

this.DataGridView.EditingControl.Enbale = rowIndex != 3; // or the number you need

in the class that inherits DataGridViewColum override method InitializeEditingControl
it has parameter rowIndex the write something like this

this.DataGridView.EditingControl.Enbale = rowIndex != 3; // or the number you need
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文