Click here to Skip to main content
15,860,972 members
Articles / Desktop Programming / WPF
Article

Custom TreeView Layout in WPF

Rate me:
Please Sign up or sign in to vote.
4.90/5 (66 votes)
24 Jan 2007CPOL3 min read 574.3K   11.5K   230   67
Shows how to turn a TreeView into an Org Chart.

Introduction

This article discusses how to customize the item layout in a WPF TreeView. The layout we will examine is quite similar to an "org chart", where each level of items is displayed in a horizontal row directly beneath their respective parent. Along the way we will see how the power of templates and styles in WPF can provide incredible flexibility for customizing an application's user interface.

This article is not for WPF beginners. It assumes that you already have knowledge of XAML, control templates, styles, triggers, hierarchical data templates, data binding, and other fundamentals of WPF.

I also posted another article regarding layout customization for the TreeView control. If you are interested in seeing another way that the TreeView can be customized, you might want to read Advanced Custom TreeView Layout in WPF.

Graphical overview

Before diving into the XAML which makes the magic happen, let's first take a look at what we are aiming to achieve. If I populate a TreeView with some simple data and view it, by default it looks pretty plain. Here is the "before" picture:

Before

What you see above is certainly not a breathtaking representation of the data. However, after we customize the way that TreeViewItems are rendered and how the TreeView positions its items, the same TreeView control can look like this:

After

How it works

The first step is to create a custom ControlTemplate for the TreeViewItem class. If you wrap that template in a typed Style (i.e. a Style with no Key) then it will automatically be applied to every TreeViewItem instance by default. The TreeViewItem control template should have two things: a ContentPresenter whose Name is 'PART_Header' and an ItemsPresenter. The ContentPresenter is used to display the content of the item. The ItemsPresenter is used to display it's child items.

In addition to customizing the TreeViewItem control template, you also must modify the ItemsPanel of TreeViewItem. In order for the child items to be displayed in a horizontal row, I set the TreeViewItem.ItemsPanel property to a StackPanel with a horizontal orientation. That setting was also applied in the typed Style mentioned previously.

Let's take a look at an abridged version of the typed Style:

XML
<Style TargetType="TreeViewItem">
  <Style.Resources>
    <!-- Resources omitted for clarity… -->
  </Style.Resources>
  <Setter Property="Template">
    <Setter.Value>
      <ControlTemplate TargetType="TreeViewItem">
        <Grid Margin="2">
          <Grid.RowDefinitions>
            <!--The top row contains the item's content.-->
            <RowDefinition Height="Auto" />
            <!--The bottom row contains the item's children.-->
            <RowDefinition Height="*" />
          </Grid.RowDefinitions>

          <!-- This Border and ContentPresenter displays the
               content of the TreeViewItem. -->
          <Border Name="Bd"
            Background="{StaticResource ItemAreaBrush}"
            BorderBrush="{StaticResource ItemBorderBrush}"
            BorderThickness="0.6"
            CornerRadius="8"
            Padding="6"
            >
            <ContentPresenter Name="PART_Header"                 
              ContentSource="Header"
              HorizontalAlignment="Center"
              VerticalAlignment="Center" />
          </Border>

          <!-- The ItemsPresenter displays the item's children. -->
          <ItemsPresenter Grid.Row="1"/>
        </Grid>

        <ControlTemplate.Triggers>
          <!--When the item is selected in the TreeView, use the
              "selected" colors and give it a drop shadow. -->
          <Trigger Property="IsSelected" Value="True">
            <Setter
              TargetName="Bd"
              Property="Panel.Background"                    
              Value="{StaticResource SelectedItemAreaBrush}" />
            <Setter
              TargetName="Bd"
              Property="Border.BorderBrush"                    
              Value="{StaticResource SelectedItemBorderBrush}" />
            <Setter
              TargetName="Bd"
              Property="TextElement.Foreground"                  
              Value="{DynamicResource
                {x:Static SystemColors.HighlightTextBrushKey}}" />
            <Setter
              TargetName="Bd"
              Property="Border.BitmapEffect"                 
              Value="{StaticResource DropShadowEffect}" />
          </Trigger>
        </ControlTemplate.Triggers>
      </ControlTemplate>
    </Setter.Value>
  </Setter>

  <!-- Make each TreeViewItem show it's children
       in a horizontal StackPanel. -->
  <Setter Property="ItemsPanel">
    <Setter.Value>
      <ItemsPanelTemplate>
        <StackPanel
          HorizontalAlignment="Center"
          IsItemsHost="True"
          Margin="4,6"
          Orientation="Horizontal"  />
      </ItemsPanelTemplate>
    </Setter.Value>
  </Setter>
</Style>

The final step is to make the TreeView center the root item(s) horizontally. Doing so will provide symmetry between the items, as seen in the screenshot above. This step is a simple matter of setting the TreeView's ItemsPanel property to a Grid whose HorizontalAlignment is set to 'Center'. Let's take a look at the XAML for a Window which contains our customized TreeView:

XML
<Window x:Class="CustomTreeViewLayout.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:CustomTreeViewLayout"
    Title="Custom TreeView" Height="350" Width="780"
    Loaded="OnLoaded"
    WindowStartupLocation="CenterScreen"
    FontSize="11"
    >
  <TreeView Name="tree">
    <TreeView.Resources>
      <ResourceDictionary>
        <!-- Import the resource dictionary file which
             contains the Style that makes TreeViewItems
             display their child items in an organization
             chart layout. -->
        <ResourceDictionary.MergedDictionaries>
          <ResourceDictionary Source="OrgChartTreeViewItemStyle.xaml" />
        </ResourceDictionary.MergedDictionaries>

        <!-- This template explains how to render
             a Node object and its child nodes. -->
        <HierarchicalDataTemplate
          DataType="{x:Type local:Node}"
          ItemsSource="{Binding ChildNodes}"
          >
          <TextBlock Text="{Binding Text}" />
        </HierarchicalDataTemplate>
      </ResourceDictionary>
    </TreeView.Resources>

    <!-- Put the root item(s) in a centered Grid so that
         they will be centered and retain their width. -->
    <TreeView.ItemsPanel>
      <ItemsPanelTemplate>
        <Grid
          HorizontalAlignment="Center"
          IsItemsHost="True" />
      </ItemsPanelTemplate>
    </TreeView.ItemsPanel>
  </TreeView>
</Window>

I am not going to discuss the code which populates the TreeView with dummy data. Feel free to peruse that code (and all the rest of it) in the source code download, which is available at the top of this article.

Tip

Customizing the ControlTemplate for the TreeViewItem class was easy once I discovered a little trick. I serialized the default TreeViewItem control template to XAML and then modified that until I got the result I was looking for.

The Big Bummer

Unfortunately there is no supported way to programmatically set the selected item in a TreeView. The TreeView's SelectedItem property does not have a setter. As a result, I could not customize the keyboard navigation for the TreeView. The demo project prevents the TreeView from responding to keyboard input altogether. If you enable keyboard navigation in the demo you will find that it is very unintuitive to navigate the items. Hopefully one day there will be a way to customize the keyboard navigation of a TreeView, but until then...

License

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


Written By
Software Developer (Senior)
United States United States
Josh creates software, for iOS and Windows.

He works at Black Pixel as a Senior Developer.

Read his iOS Programming for .NET Developers[^] book to learn how to write iPhone and iPad apps by leveraging your existing .NET skills.

Use his Master WPF[^] app on your iPhone to sharpen your WPF skills on the go.

Check out his Advanced MVVM[^] book.

Visit his WPF blog[^] or stop by his iOS blog[^].

See his website Josh Smith Digital[^].

Comments and Discussions

 
SuggestionNo big bummer Pin
Member 359350317-Dec-20 23:22
Member 359350317-Dec-20 23:22 
QuestionDo you have this in VB code? Pin
Dave Lim11-Oct-16 19:10
Dave Lim11-Oct-16 19:10 
QuestionKeyboard Navigation Pin
_Chris_Turner_20-Dec-13 22:53
_Chris_Turner_20-Dec-13 22:53 
QuestionApply Same Style while Binding Treeview to Dataset Pin
deeps107018-Mar-13 8:08
deeps107018-Mar-13 8:08 
QuestionExpand children on click Pin
Luigi Saggese6-Nov-12 0:54
Luigi Saggese6-Nov-12 0:54 
Questionhow can i draw line between the rectangles ? Pin
pouyan momeny22-Jan-12 22:20
pouyan momeny22-Jan-12 22:20 
QuestionDrag and Drop Pin
Member 248296826-Sep-11 20:44
Member 248296826-Sep-11 20:44 
QuestionTemplating a potentially infinite TreeView Pin
Ákos György Pfeff14-Mar-11 8:00
Ákos György Pfeff14-Mar-11 8:00 
GeneralSerialization of Default ControlTemplate Pin
gilles211-Feb-11 0:14
gilles211-Feb-11 0:14 
GeneralHi Josh Pin
hovhannisyankaren11-Sep-10 8:43
hovhannisyankaren11-Sep-10 8:43 
GeneralRe: Hi Josh Pin
Josh Smith11-Sep-10 14:53
Josh Smith11-Sep-10 14:53 
GeneralRe: Hi Josh Pin
hovhannisyankaren15-Sep-10 8:46
hovhannisyankaren15-Sep-10 8:46 
QuestionHow to display connecting lines along with node? Pin
Viji Raj5-Mar-10 20:36
Viji Raj5-Mar-10 20:36 
QuestionRe: How to display connecting lines along with node? Pin
BaharDev1-Sep-10 18:30
BaharDev1-Sep-10 18:30 
yes I want to find same thing,in one of the examples that I saw in a blog he simply connected each child to the parent but the thing that I want is connectors in organizational chart format,I'll appreciate your cooperation and by the way Josh thanks for your amazing workSmile | :)
AnswerRe: How to display connecting lines along with node? Pin
darrellp17-Dec-10 4:22
darrellp17-Dec-10 4:22 
GeneralI am not familiar with WPF can u send me a c# version on ASP.NET Pin
Umaid110-Nov-09 2:22
Umaid110-Nov-09 2:22 
QuestionIs it possible to get the look of the ultratree (infragistic's winform) with columns? Pin
Joan20095-Jun-09 8:54
Joan20095-Jun-09 8:54 
QuestionHow to ADD GrandChild Items to Treeview in WPF Pin
venuvolla18-May-09 20:38
venuvolla18-May-09 20:38 
QuestionProgrammatically toggle the template? Pin
Rick Hansen17-May-09 6:19
Rick Hansen17-May-09 6:19 
GeneralYou the man Pin
Rick Hansen15-May-09 11:01
Rick Hansen15-May-09 11:01 
GeneralTabControl Pin
roberlamerma4-May-09 4:40
roberlamerma4-May-09 4:40 
QuestionBottom Up Pin
dfreeser16-Apr-09 14:18
dfreeser16-Apr-09 14:18 
AnswerRe: Bottom Up Pin
Member 80240312-Aug-11 23:28
Member 80240312-Aug-11 23:28 
Questionhow can i use custom treview(wpf) in my webpage Pin
anandvara10-Jan-09 1:57
anandvara10-Jan-09 1:57 
AnswerRe: how can i use custom treview(wpf) in my webpage Pin
Josh Smith10-Jan-09 3:28
Josh Smith10-Jan-09 3:28 

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.