Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use treeview with data grid view column in c# windows with editable cell [duplicate]

I need a multi columned Treeview for an app I am writing, I was wondering if anyone knew of a free working (in Vs-2010) multi columned Treeview.

like image 930
Vade Avatar asked Nov 25 '22 12:11

Vade


2 Answers

There are a number of sample controls to be found around the web:

  • TreeViewAdv for .Net
  • TreeView with Columns
  • ContainerListView and TreeListView

But the all-time favorite is probably the ObjectListView, which provides an expandable, multi-column ListView, along with many other incredibly handy features:

   ObjectListView sample

like image 133
Cody Gray Avatar answered Nov 27 '22 03:11

Cody Gray


You can use this example here or download this control

like image 34
LeftyX Avatar answered Nov 27 '22 01:11

LeftyX