How to set tree node 'read only' in windows C#? Should not us disable, default.
Asked
Active
Viewed 3,563 times
1 Answers
1
Set the TreeView.LabelEdit
property to False

Anuraj
- 18,859
- 7
- 53
- 79
-
only a particular node, not tree itself!! – Dhanapal Mar 23 '09 at 09:30
-
You can cancel all the Edits, using Node.EndEdit(false). – Anuraj Mar 23 '09 at 11:06