我宣布了ListBox
,就像我在那里展示的一样。关键是在Item定义中我有很多关于网格和元素的东西。我想更改项目中一个图像的可见性,以便仅在选择元素本身时才可见。
例如,我设法更改了项目的背景和一般外观,但我无法访问内部元素:(
<ListBox stuff stuff stuff>
<ListBox.ItemTemplate>
<DataTemplate DataType="local:Patient">
<grids , borders, things, stuff
<Image Name="image1" source opacity stuff/>
</ grids bordes and design in general>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}">
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Foreground" Value="White"/>
<!--HERE I WANT TO CHANGE VISIBILITY OF THE IMAGE-->
</Trigger>
</Style.Triggers>
</Style>
</ListBox.ItemContainerStyle>
<ListBox.Template>
<!-- some other styles when deselected and other things -->
</ListBox.Template>
</ListBox>
我尝试使用:
<Setter TargetName="physiciansSettinsImage" Property="Visibility" Value="Visible"/>
但它不能在Style Setter上设置。任何线索?
整个设计相当复杂,所以我想尽量避免重新编码。
答案 0 :(得分:5)
将触发器移至DataTemplate
。
我认为 image1 Visibility
为Collapsed
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding RelativeSource=
{RelativeSource Mode=FindAncestor, AncestorType=
{x:Type ListBoxItem}},Path=IsSelected}" Value="True">
<Setter TargetName="image1" Property="Visibility" Value="Visible"/>
</DataTrigger>
</DataTemplate.Triggers>
现在,当选择该项目时,Image's Visibility
设置为Visible
。