Here is my xaml, I don't want the child node to have the Image that is intended for the parent node.
<TreeView x:Name="MediaListTree"
VerticalAlignment="Stretch" Width="221" BorderThickness="2" Height="549" HorizontalAlignment="Left" Canvas.Left="63" Canvas.Top="102">
<TreeView.ItemContainerStyle>
<Style TargetType="{x:Type TreeViewItem}">
<Setter Property="IsExpanded" Value="True"/>
</Style>
</TreeView.ItemContainerStyle>
<TreeView.Resources>
<HierarchicalDataTemplate ItemsSource="{Binding SongList}" DataType="x:Type ">
<StackPanel Orientation="Horizontal">
<Image Source="{Binding Image.Source}" Width="15" Height="15" Stretch="Fill" />
<TextBlock Text="{Binding Value}" Padding="4,0,0,2" FontWeight="{Binding FontWeight}" />
<TextBlock Text="{Binding SongList.Value}" Margin="2,0" />
</StackPanel>
</HierarchicalDataTemplate>
</TreeView.Resources>
</TreeView>
How do I do that?