Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要不在我的 GridEX 中编辑行,但是,如果我关闭 EditMode,它不允许您“编辑”顶部的过滤器部分。GridEX 行没有编辑选项,只有列有,所以有什么办法可以解决这个问题吗?我是否必须将事件处理程序作为解决方法?如果是这样,有没有什么特别有效的方法?
使用 GridEX1.AllowEdit 关闭整个编辑然后为每一列打开 EditMode。这样您就无法编辑记录,但可以编辑过滤器
使用 CurrentCellChanging 事件,然后将 AllowEdit 设置为 False
正如之前的用户所说,在 CurrentCellChanged 事件中:
GridEX1.AllowEdit = InheritableBoolean.False