我想禁用编辑树的所有节点。除了允许您根据单元格值单独设置编辑的属性之外的任何此类属性?
答案 0 :(得分:7)
foreach(TreeListColumn col in treeList.Columns)
{
col.OptionsColumn.AllowEdit = false;
col.OptionsColumn.ReadOnly = true;
}
答案 1 :(得分:6)
treeList.OptionsBehavior.Editable = false;