How to use a control like the one in Visual Studio's Class Details window

Posted by Chapso on Stack Overflow See other posts from Stack Overflow or by Chapso
Published on 2010-06-09T19:26:30Z Indexed on 2010/06/09 20:12 UTC
Read the original article Hit count: 256

There is a control in Visual Studio's Class Details window (accessed via Class Diagram) which combines a ListView with a TreeView. The result looks something like this:

TreeViewNode1
  Column 1      Column 2       Column 3
  Column 1      Column 2       Column 3
TreeViewNode2
  Column 1      Column 2       Column 3
  Column 1      Column 2       Column 3

All of the TreeView Nodes are collapsable so that you can view only the nodes you want to. I am looking to implement this, but it doesn't seem to be a .net control. Does anyone know of a control which already exists that allows this? It has to be free (as in beer).

© Stack Overflow or respective owner

Related posts about .NET

Related posts about listview