Click here to Skip to main content
15,886,110 members
Articles / Desktop Programming / WPF
Article

TreeListView

Rate me:
Please Sign up or sign in to vote.
4.85/5 (23 votes)
6 Apr 2008CPOL1 min read 198.4K   9.8K   59   33
TreeView with multiple columns
treelistview.jpg

Introduction

This control is supposed to display hierarchical data in a TreeView while providing the possibility to append additional information to each item.

Background

I needed to present data in a hierarchical structure but it was required to display additional information for each item. At first, I appended all this information to the TreeNodeItem's text which was quite unclear for the user.

Using the Code

To use the multi column TreeView in your own application, declare the control in any of your windows or controls. TreeListView exposes all properties of ListView plus AllowsColumnReorder and Columns.

XML
<local:TreeListView AllowsColumnReorder="True">
    <local:TreeListView.Columns>
        ...
    </local:TreeListView.Columns>
    ...
</local:TreeListView>

Both properties correlate with the AllowsColumnReorder and Columns properties of GridView which is documented here.

Hierarchical Data Template

In order to provide the tree with a way to retrieve child nodes, you must either declare a HierarchicalDataTemplate or a DataTemplateSelector.

TreeListView is only going to use the ItemsSource property of the HierarchicalDataTemplate or DataTemplateSelector because all information is visualized in the same manner (in rows). Therefore, a declaration as follows is sufficient:

XML
<local:TreeListView.ItemTemplate>
    <HierarchicalDataTemplate ItemsSource="{Binding Children}"/>
</local:TreeListView.ItemTemplate>

Columns

It is vital to declare at least one column which the TreeListView is going to use to visualize the data. MSDN provides sufficient information about declaring GridViewColumns so I am not going to go into any details.

The only new thing about declaring GridViewColumns is that at least one column must contain a TreeListViewExpander which is a ToggleButton that can expand its row and indents all contents in its column.

XML
<GridViewColumn>
    <GridViewColumn.CellTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal">
                <!--The Expander Button (can be used in any column 
                (typically the first one))-->
                <local:TreeListViewExpander/>
                <!--The data to display in this column-->
                <TextBlock Text="{Binding}"/>
            </StackPanel>
        </DataTemplate>
    </GridViewColumn.CellTemplate>
</GridViewColumn>

And that's it!

Points of Interest

It would probably be a good idea to implement all features of GridView. Unfortunately I do not have the time to do that right now.

History

  • 6th April, 2008
    • First release
    • Fixed file download

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralFile Pin
gurveysc8-Apr-08 3:55
professionalgurveysc8-Apr-08 3:55 
GeneralRe: File Pin
tillmyspace8-Apr-08 20:32
tillmyspace8-Apr-08 20:32 
GeneralRe: File Pin
Member 38002106-Aug-09 4:06
Member 38002106-Aug-09 4:06 
GeneralRe: File Pin
tillmyspace9-Apr-08 10:06
tillmyspace9-Apr-08 10:06 
GeneralRe: File Pin
gurveysc9-Apr-08 10:17
professionalgurveysc9-Apr-08 10:17 
GeneralRe: File Pin
Thoris25-Jul-08 5:20
Thoris25-Jul-08 5:20 
GeneralRe: File Pin
gurveysc25-Jul-08 5:33
professionalgurveysc25-Jul-08 5:33 
GeneralRe: File Pin
Sunil Jampa28-Sep-08 20:50
Sunil Jampa28-Sep-08 20:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.