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;