How to disable the treeview nodes in windows forms c#.net
+1
A:
TreeView.Nodes[**NodeName**].Visible = false;
or, you can use the RemoveAt method if you want to remove a node, as opposed to hiding it.
Sev
2009-06-22 07:39:19
I cannot find a "Visible" setter property for TreeNode, only an "IsVisible" getter property.
Fredriku73
2009-09-21 11:00:00