5
votes

I have a WinForms TreeView with one main node and several sub-nodes.

How can I hide the + (plus sign) in the main node?

3

3 Answers

12
votes

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.

0
votes

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

0
votes

Set SiteMapDataSource property ShowStartingNode to false. For example: