TreeView with Columns

  • Thread starter Thread starter tjb
  • Start date Start date
T

tjb

Could anyone recommend a tree-view control that allows columns? Ideally it
would also allow images in any column. Freeware is preferable (it's simply
a hobbyist project -- a newsreader, to be specific).

Here is a screenshot of the kind of thing I'm looking for:
<http://www.czilla.cz/images/thunderbird-big.png> (the control in question
is the one at the top-right).
 
tjb said:
Could anyone recommend a tree-view control that allows columns? Ideally
it
would also allow images in any column. Freeware is preferable (it's
simply
a hobbyist project -- a newsreader, to be specific).

Here is a screenshot of the kind of thing I'm looking for:
<http://www.czilla.cz/images/thunderbird-big.png> (the control in question
is the one at the top-right).

ContainerListView and TreeListView: Writing VS.NET design-surface compatible
controls
<URL:http://www.codeproject.com/cs/miscctrl/extendedlistviews.asp>

TreeListView
<URL:http://www.codeproject.com/cs/miscctrl/TreeListView.asp>

VB.NET TreeListView
<URL:http://www.codeproject.com/vb/net/vbnettreelistview.asp>

Commercial:

<URL:http://www.syncfusion.com/Products/product.aspx?p=5&tab_id=0>
 
Another commerical one: DlhSoft DataTreeGridView control
(http://DlhSoft.com/HierarchicalData) inherits behavior and UI from
DataGridView but provides support for showing a treeview in one column (at
your choice). The most interesting part is that it supports databinding
including for indentation level and is expanded properties of the tree nodes
(rows), unlike ListView-based controls (The original ListView and TreeView
controls in .NET 2.0 do not support databinding, but DataGridView does).
 
Back
Top