Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想禁用编辑我的树的所有节点。除了允许您根据单元格值单独设置编辑的属性之外,还有任何此类属性吗?
foreach(TreeListColumn col in treeList.Columns) { col.OptionsColumn.AllowEdit = false; col.OptionsColumn.ReadOnly = true; }
treeList.OptionsBehavior.Editable = false;