How do i make the plus minus icons bigger in the tree view in C# .net with out making visual styles disable.
feedback
|
|
I don't think you have any control about it. The only thing you can do is override the DrawNode event and paint the nodes yourself. First you need to change the DrawMode to OwnerDrawAll. Take a look at the relevant msdn page, it contains surprisingly much detail: http://msdn.microsoft.com/en-us/library/system.windows.forms.treeview.drawnode.aspx | ||||
|
feedback
|
|
Bigger than the default 10px or so? I think follow the answer above, but because I came across this while trying to determine how to restore the original size: Turns out you have some control if you set the indent property - anything less than 10 px starts to shrink the +/- icons. I had a treeview that was being set with an indent of 5, and I found that by restoring it to 15 (or even 10) restored the icon size. I hope that helps someone else looking for a solution in that area. | |||
|
feedback
|
|
This is a bit late... but just ran into this, and discovered (by accident) that there is an (indirect) way to control the size of the plus/minus signs on the TreeView (in WinForms). You basically have to add an image list, and the TreeView plus/minus signs will change with the size of the images. To see this in the designer, do the following:
I do not believe that you have to have images in the list, though I have not tried it that way. Hope this helps someone. | |||
|
feedback
|