vote up 1 vote down star

How to disable the treeview nodes in windows forms c#.net

flag
4  
Please elaborate. Describe better what you want to do. You can't "gray out" default tree nodes if that is what you want, but you can hide them or handle events so that they cannot be expanded. – Blixt Jun 22 at 7:38

1 Answer

vote up 1 vote down
TreeView.Nodes[**NodeName**].Visible = false;

or, you can use the RemoveAt method if you want to remove a node, as opposed to hiding it.

link|flag
I cannot find a "Visible" setter property for TreeNode, only an "IsVisible" getter property. – Fredriku73 Sep 21 at 11:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.