回复 1楼坚持自己的不举的帖子
感谢您的反馈。
在FetchCellStyle事件是设置e.CellStyle.Locked为true,该单元格就不能编辑。
因此首先需要设置C1TrueDBGrid的Splits[0].DisplayColumns所有列的FetchStyle为true。
然后通过如下代码设置不可编辑:
- void c1TrueDBGrid1_FetchCellStyle(object sender, C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs e)
- {
- if (e.Row == 0)
- {
- e.CellStyle.Locked = true;
- }
- }
复制代码 |