在DevExpress.XtraGrid.Views.Grid.GridView中,有没有办法以编程方式取消选中或禁用行的复选框(仅限少数几个,基于条件)? GridView与BindingSource捆绑在一起。如果您需要任何其他信息,请询问。我收到了一个DevExpress的项目,但没有经验,很抱歉,如果我的问题很愚蠢。 谢谢你的帮助。
答案 0 :(得分:0)
这是我找到的解决方案。
private void GridView_ShowingEditor(object sender, System.ComponentModel.CancelEventArgs e)
{
if (<some condition>)
e.Cancel = true;
}
更多信息here.