我想禁用对树中所有节点的编辑。除了允许您根据单元格值单独设置编辑的属性之外,还有没有这样的属性?
发布于 2011-06-13 19:00:25
foreach(TreeListColumn col in treeList.Columns)
{
col.OptionsColumn.AllowEdit = false;
col.OptionsColumn.ReadOnly = true;
}发布于 2011-05-13 23:24:23
treeList.OptionsBehavior.Editable = false;https://stackoverflow.com/questions/5994052
复制相似问题