回复 1楼q406157290的帖子
Column和Row下都有IsReadOnly属性可以设置行和列的只读。
若是针对某个单元格,可以使用CellFactory类。
如下是CellFactory接口:
public interface ICellFactory
{
FrameworkElement CreateCell(
C1FlexGrid grid,
CellType cellType,
CellRange range);
FrameworkElement CreateCellEditor(
C1FlexGrid grid,
CellType cellType,
CellRange range)
void DisposeCell(
C1FlexGrid grid,
CellType cellType,
FrameworkElement cell);
}
具体使用可以参考产品文档。 |