tags:

views:

24

answers:

2

I need a treeview control:

  1. Root nodes don't have checkboxes, only images.
  2. All child nodes have a checkbox + image.

C#, .net 2.0, winforms (not wpf)

A: 

The WinForms tree view does not support mixed checkbox/non checkboxes nodes by default

You can enable CheckBoxes globally on the tree view and disable them on specific nodes using this method

vc 74
@vc 74, great link!
nik
A: 

You might drop some eyeballs on this: http://www.dotnetmagic.com/features_treeControl.html

sbeskur