3

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

Stefan Koell
  • 1,476
  • 3
  • 15
  • 25

4 Answers4

3

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

user17622
  • 76
  • 3
2

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

C# replacement for standard Treeview?

Community
  • 1
  • 1
Tiberiu Ana
  • 3,663
  • 1
  • 24
  • 25
1

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
  • 69,698
  • 10
  • 71
  • 108
  • I'm not really happy with the standard winforms control - that's why I asked the question in the first place. Implementing drag&drop with a nice drop marker is really painful in the standard control. – Stefan Koell Feb 11 '09 at 15:25
1

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
  • 6,106
  • 7
  • 43
  • 56