views:

870

answers:

1

I have TextBlock inside HierarchicalDataTemplate. I need to set foreground color to Red when TreeViewItem selected.

<controls:TreeView  Background="#FF939597"
      ScrollViewer.HorizontalScrollBarVisibility="Disabled" x:Name="CommentTreeView" Margin="0,0,0,118"
            ItemContainerStyle="{StaticResource SectionsTreeViewItemStyle}">
                <controls:TreeView.ItemTemplate>
                    <control:HierarchicalDataTemplate ItemsSource="{Binding SubSections}" ItemContainerStyle="{StaticResource SectionsTreeViewItemStyle}">
                    <Grid>

                    <TextBlock x:Name="ItemTextBlock" Margin="0,6,48,0"
                               <!-- ??? Foreground="Red" ??? if item selected ??? -->
                                         FontSize="11"  Text="{Binding Path=Name}" 
                                         TextWrapping="Wrap" VerticalAlignment="Top">
                    </TextBlock>

                </Grid>

                </control:HierarchicalDataTemplate>
            </controls:TreeView.ItemTemplate>
        </controls:TreeView>
A: 

You can do this by using custom implementation of RelativeSource for Silverlight:

http://www.codeproject.com/Articles/36500/Implementing-RelativeSource-binding-in-Silverlight.aspx

<UserControl.Resources>
    <Converters:BackgroundConverter x:Key="BackgroundConverter"/>
</UserControl.Resources>

    <controls:TreeView Background="#FF939597"
          ScrollViewer.HorizontalScrollBarVisibility="Disabled" x:Name="CommentTreeView" Margin="0,0,0,118"
                ItemContainerStyle="{StaticResource SectionsTreeViewItemStyle}">
                    <controls:TreeView.ItemTemplate>
                        <control:HierarchicalDataTemplate ItemsSource="{Binding SubSections}" ItemContainerStyle="{StaticResource SectionsTreeViewItemStyle}">

                            <Grid>

                            <TextBlock x:Name="ItemTextBlock" Margin="0,6,48,0"
                                                 FontSize="11"  Text="{Binding Path=Name}" 
                                                 TextWrapping="Wrap" VerticalAlignment="Top">
                                                            <local:BindingHelper.Binding>
                                    <local:BindingProperties TargetProperty="Foreground" SourceProperty="IsSelected"
                                                             Converter="{StaticResource BackgroundConverter}"
                                                             RelativeSourceAncestorType="TreeViewItem"/>
                                </local:BindingHelper.Binding>
                            </TextBlock>

                        </Grid>

                        </control:HierarchicalDataTemplate>
                    </controls:TreeView.ItemTemplate>
                </controls:TreeView>
StreamT