Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.