views:

59

answers:

1

I want to make a tree view where items show a "+" icon when closed and a "-" icon when open. Just like the Windows XP explorer. However, I can't find out how to get the icons. Do I get them from the system or do I need to provide my own?

+4  A: 

The tree-view control will display the icons if you set the TVS_HASBUTTONS style.

Nick D
Thanks! Just found out myself actually :)
StackedCrooked