vote up 0 vote down star

I have an image that I want to show only when a ListViewItem is selected. The code I have isn't working, but I think it illustrates what I want to accomplish.

<GridViewColumn>
   <GridViewColumn.CellTemplate>
      <DataTemplate>
         <Image Height="20">
            <Image.Style>
               <Style TargetType="{x:Type Image}">
                  <Setter Property="Visibility" Value="Collapsed" />
                  <Style.Triggers>
                     <DataTrigger Binding="{Binding RelativeSource=
                           {
                              RelativeSource 
                              Mode=FindAncestor, 
                              AncestorType={x:Type ListViewItem}
                           }, Path=IsSelected}" Value="True">
                        <Setter Property="Visibility" Value="Visible" />
                        <Setter Property="Source" Value="/Russound.Windows;component/Resources/2leftarrow-64.png" />
                        <Setter Property="ToolTip" Value="Selected" />
                     </DataTrigger>
                  </Style.Triggers>
               </Style>
            </Image.Style>
         </Image>
      </DataTemplate>
   </GridViewColumn.CellTemplate>
</GridViewColumn>
flag

3 Answers

vote up 0 vote down check

Check below link

http://asimsajjad.blogspot.com/2009/05/wpf-listbox-control.html

Hope that will help you.

link|flag
Not 100% perfect, but its pointing me in the right direction. Thanks. – Russ Sep 22 at 12:45
vote up 1 vote down

When dealing with binding issues, I generally search through the Output window to find any binding errors. They all start with System.Windows.DataError. So, are there any errors in the Output window?

link|flag
Well, I will say that I did not know about the DataError in the output window. Thank you, I fixed several other binding problems, HOWEVER, this specific issue is not throwing an error. – Russ Sep 18 at 17:08
Oh, yea sorry, +1 for teaching me something new. – Russ Sep 18 at 17:09
Try this, have two DataTriggers, one when IsSelected is true and the other one for false. And also remove that Setter. What I'm suspecting is that dependency property resolution is always picking that setter value for it has a higher precedence than style triggers. I have faced this problem before, but I don't really remember the exact situation. – Trainee4Life Sep 18 at 18:03
For more information, check MSDN @ msdn.microsoft.com/en-us/library/… – Trainee4Life Sep 18 at 18:05
vote up 0 vote down

Simply change the default Visibility to Hidden instead of Collapsed.

Apparently, if you use Collapsed, the element is removed from the visual tree and the RelativeSource no longer works.

link|flag
Changing to Hidden is a No Go Jalfp – Russ Sep 18 at 15:35
I built a sample application that works using your code with Hidden instead of Collapsed. Maybe I didn't understand what you want to accomplish... – Jalfp Sep 21 at 7:14

Your Answer

Get an OpenID
or

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