TreeView with Columns

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).
 
H

Herfried K. Wagner [MVP]

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>
 
G

Guest

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).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top