views:

541

answers:

1

How to set tree node 'read only' in windows C#? Should not us disable, default.

+1  A: 

Set the TreeView.LabelEdit property to False

Anuraj
only a particular node, not tree itself!!
Dhana
You can cancel all the Edits, using Node.EndEdit(false).
Anuraj