views:

962

answers:

5
+3  Q: 

WinForms TreeView

I am looking for a WinForms treeview control with following requirements:

  • Should be not so hard to write code for it (most tree/list combinations are way too complicated)
  • Should have some sort of easy drag and drop capabilities (including a vista-explorer style drop marker)
  • Should be free or at least affordable
  • Should provide some freedom of text/color/style/etc. of the treenodes (classic "outlook bold with blue numbers style)

Any ideas? thx

A: 

I think the standard WinForms' treeview control will do everything on your list. I don't know what the second item refers to as I've not used Vista. It's declared as System.Windows.Forms.TreeView and is available in VS200*'s form designer. I can't think of any simpler way of doing tree views.

Skizz

Skizz
Stefan Koell
+3  A: 

i would recommend http://www.lidorsystems.com/ !

that looks fantastic. thanks for that.
Stefan Koell
A: 

Another interesting alternative is TreeViewAdv, as suggested in another thread.

http://stackoverflow.com/questions/581985/c-replacement-for-standard-treeview

Tiberiu Ana
A: 

I'm a big fan of SandGrid by Divelements. I use it for all my ListViews and TreeViews. It even supports both at the same time (a TreeView with columns). I find it easy to use and very fast.

Anthony Brien