DevExpress XtraTreeList禁用节点编辑

时间:2011-05-13 15:16:10

标签: c# devexpress xtratreelist

我想禁用编辑树的所有节点。除了允许您根据单元格值单独设置编辑的属性之外的任何此类属性?

2 个答案:

答案 0 :(得分:7)

foreach(TreeListColumn  col in treeList.Columns)
{
   col.OptionsColumn.AllowEdit = false;
   col.OptionsColumn.ReadOnly = true;
}

答案 1 :(得分:6)

treeList.OptionsBehavior.Editable = false;