vote up 2 vote down star

Hi,

I have treeview with 1 main node and several sub-nodes,

How can I hide the + sign in the main node?

Thanks,

flag

3 Answers

vote up 6 vote down check

Treview Property: .ShowRootLines = false

When ShowRootLines is false, the Plus/Minus sign will not be shown for the root node, but will still show when necessary on child nodes.

With the Plus/Minus sign hidden, you might consider executing the Expand() method of the root node once the tree is populated. That will make sure that the root node shows all first-level child nodes.

Note: There is a ShowPlusMinus property on the TreeView, but it works on all nodes.

link|flag
Oops, thanks. I need intelesense :) – Doug L. Oct 2 '08 at 8:59
vote up 0 vote down

How do i increase the plus and minus icons size (to use the application on the touch screen) without disabling microsoft visual styles?

link|flag
vote up 0 vote down

See the TreeView::ShowExpandCollapse property. Set it to false to disable the expand/collapse node indicators.

link|flag

Your Answer

Get an OpenID
or

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