I need to add images to WPF treeview nodes, I've had a look at this example How do I add icons next to the nodes in a WPF TreeView? and it's working fine except ALL nodes have the same image.I would like all the nodes in the treeview which do not have any children to either have no image or have a different image.

Here is my XAML where I set the image:

   <HierarchicalDataTemplate x:Key="NodeTemplate">
        <StackPanel Orientation="Horizontal" Margin="2">
            <Image Source="test.png"  Width="16" Height="16" SnapsToDevicePixels="True"/>
        <TextBlock x:Name="tb"/>
        </StackPanel>
        <HierarchicalDataTemplate.ItemsSource>
            <Binding>
                <Binding.XPath>child::node()</Binding.XPath>
            </Binding>
        </HierarchicalDataTemplate.ItemsSource>
        <HierarchicalDataTemplate.Triggers>
            <DataTrigger Binding="{Binding Path=NodeType}" Value="Text">
                <Setter TargetName="tb" Property="Text" Value="{Binding Path=Value}"></Setter>
            </DataTrigger>
            <DataTrigger Binding="{Binding Path=NodeType}" Value="Element">
                <Setter TargetName="tb" Property="Text" Value="{Binding Path=Name}"></Setter>
            </DataTrigger>
        </HierarchicalDataTemplate.Triggers>
    </HierarchicalDataTemplate>

Below is a screen shot of the output

Treeview output Could someone please suggest how can I achieve this, the possible solution can be either changing the XAML or programatically via C#.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Here is some code I used to solve almost the same problem. (The data I designed this for is XML data, so XPath="@name" means the value of the attribute name of the node, while Name means element type.)

<Window x:Class="NodeExplorer2.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:my="clr-namespace:NodeExplorer2">
    <Window.Resources>


        <my:PathConverter x:Key="iconConverter"/>

        <HierarchicalDataTemplate x:Key="XmlTreeTemplate">
            <HierarchicalDataTemplate.ItemsSource>
                <Binding XPath="child::node()" />
            </HierarchicalDataTemplate.ItemsSource>

            <StackPanel Orientation="Horizontal">
                <Image x:Name="icon" SnapsToDevicePixels="True" Stretch="None" Margin="0,0,3,0" />
                <TextBlock Text={Binding XPath="@name"/>
            </StackPanel>
            <HierarchicalDataTemplate.Triggers>
            <DataTrigger Binding="{Binding Path=NodeType}" Value="Element">
                <Setter TargetName="icon" Property="Source">
                    <Setter.Value>
                        <Binding Path="Name" Converter="{StaticResource iconConverter}">
                            <Binding.FallbackValue>
                                <ImageSource>
                                    Data/Icons/unknown.png
                                </ImageSource>
                            </Binding.FallbackValue>
                        </Binding>
                    </Setter.Value>
                </Setter>
            </DataTrigger>
        </HierarchicalDataTemplate.Triggers>
    </HierarchicalDataTemplate>

Converter:

public class PathConverter: IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        //Console.WriteLine("Value:" + value);
            return "Data/Icons/" + value + ".png";
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        return "";
    }
}
link|improve this answer
Hi AkselK, I'm very new to WPF could you please explain what <my:PathConverter x:Key="iconConverter"/> is and where in the xaml must be placed?Im placing it in the <Window.Resources> tag but im getting the following compile time error - "my" is an undeclared prefix – Deni Nov 25 '11 at 13:56
Ah, I see. my: is a namespace, which is declared in the <window> or <usercontrol> tag, at the top of the xaml. In my case, I have declared my: as xmlns:my="clr-namespace:NodeExplorer2" In your case, it would be xmlns:my="clr-namespace:Your_project_name". All the above code is declared in <Window.Resources>, or <UserControl.Resources>, above your first real component (probably <Grid>). my:PathConverter means simply that I declare an object of type PathConverter, and x:Key=iconConverter means I can reference it by {StaticResource iconConverter}. – AkselK Nov 25 '11 at 14:04
Cool, thanks a lot for the explanation!I've just had to add a little method which checks whether a particular node has any children and if NOT then i change the node image to a child icon...Marking this as answered – Deni Nov 28 '11 at 5:44
feedback

Your Answer

 
or
required, but never shown

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