Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to display a tree view with mixed types using HierarchicalDataTemplate but so far all my attempts failed..

I have a tree-like class that can have two different types of children. (Location and Device). To make things understandable here is the illustration of what I am trying to display:

->Location 1
    |
    |--->Device 1.1
    |--->Device 1.2
    |--->Location 1.2
          |
          |---->Device 1.2.1 
          |---->Location 1.2.1
            .....etc.....

I have tried a lot of solutions I found but none worked. In the most cases I just get the class name in the tree view. Is what I am trying to do even possible using HierarchicalDataTemplate? If it is please let me know how.

share|improve this question
Can you please post your example usage of HierarchicalDataTemplate? Also, using Snoop (a tool that lets you debug live WPF/Silverlight apps), could help you pinpoint why your binding is failing. – John Zabroski Aug 19 '12 at 3:34
Thanks for the hint about the Snoop! I needed a tool like that. – 0wl Aug 19 '12 at 14:22

3 Answers

The HierarchicalDataTemplate should help to solve your problem. Take a look on latest sample on MSDN Data Templating Overview

share|improve this answer
I actually solved it before I saw your answer but thanks, this is helpful. – 0wl Aug 19 '12 at 14:20

For this hierarchy to work Location object should have composite collection of Locations and Devices and you simply need to set that collection as ItemsSource of your HierarchicalDataTemplate. This sample should work then -

<HierarchicalDataTemplate DataType="{x:Type local:Location}"
                          ItemsSource="{Binding CompositeCollection}">
   <TextBlock Text="{Binding Name}"/>
</HierarchicalDataTemplate>

<DataTemplate DataType="{x:Type local:Device}">
   <TextBlock Text="{Binding Name}"/>
</DataTemplate>

I am assuming you have Name property in each object Location and Device which you need to show on UI. Add these data templates to resources of your ItemsControl which may be ListBox, TreeView or any other ItemsControl.

share|improve this answer
up vote 0 down vote accepted

After several hours of trial and error I went back to the beginning and found the solution. I can't believe it is actually so simple.

The template looks like this:

<HierarchicalDataTemplate x:Key="NavigatorDataTemplate" DataType="{x:Type local:Location}" ItemsSource="{Binding Locations}">
    <StackPanel>
        <TextBlock Text="{Binding Description}"/>
        <ListBox ItemsSource="{Binding Devices}">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding Description}"/>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
    </StackPanel>
</HierarchicalDataTemplate>

The TreeView is just this:

<TreeView Name="treeNav" ItemTemplate="{StaticResource NavigatorDataTemplate}"/>

And since the collection that needs to be displayed is in the code already i just set it to the ItemsSource:

treeNav.ItemsSource = locations;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.