I have a treeview with more levels which uses an ImageList. How can I set the images only to 1st level nodes? The child nodes must have the default + sign.
thank you
Printable View
I have a treeview with more levels which uses an ImageList. How can I set the images only to 1st level nodes? The child nodes must have the default + sign.
thank you
VB Code:
For Each nodo As TreeNode In TreeView.Nodes If nodo.Level = 1 Then nodo.ImageIndex = TheImageIndexYouWant Next