I want my System.Windows.Forms.TreeView to have spaces between all root nodes.
For example, if they look like this:
A
B
C
D
E
F
G
H
I want them spaced apart like this:
A
B
C
D
E
F
G
H
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the ItemHeight property which sets the height, in pixels, of each tree node in the tree view. But it just sets the spaces for every TreeNode, you cannot give different heights for different TreeNode. There is no easy way to give different ItemHeights for TreeNodes.