I am using treeview in my application (C #, gui). I want to hide the checkboxes in 'Node 1' and in 'Node 1.1.1'. How should I do it? My tree looks like this:
TreeView 1
-Node 1
- Node 1.1
-Node 1.1.1
-Node 1.1.1.A
-Node 1.1.1.B
-Node 1.1.2
-Node 1.1.2.A
I use:
treeview1.checkboxes = true;
to show all the checkboxes, but how can I hide someone?
source
share