vote up 0 vote down star

Hi

I am trying to add a custom icon near the text of a TreeNode, so the items could have a "checked/unchecked" state displayed. I don't want to use a checkbox for that.

Any ideas? Thanks

flag

75% accept rate
1  
What language are you using – junmats Oct 14 at 8:52
1  
And what GUI framework/toolkit? Winforms would be very different than WPF, even though both may use C#. – Johannes Rössel Oct 14 at 9:03

1 Answer

vote up 1 vote down check

Assuming you are using .net and Windows Forms.

You must set DrawMode property of TreeView to TreeViewDrawMode.OwnerDrawAll. Once you do this, treeview's DrawNode event will fire each time a tree node is being drawn. Handle that event and draw your items manually.

You will get DrawTreeNodeEventArgs as the event arguments. State property of it will tell you which state of the tree item you must draw. e.Bounds will help you for determining bounds and you can use e.Graphics for drawing. You can find more detailed information here:

http://msdn.microsoft.com/en-us/library/system.windows.forms.treeview.drawnode.aspx

But prepare to invest multiple hours.

link|flag

Your Answer

Get an OpenID
or

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