Closed AsDotNet closed 1 year ago
Of course it's possible. You can add a Style with a trigger, for example:
<Style TargetType="{x:Type ListViewItem}">
<Style.Triggers>
<Trigger Property="IsSelected" Value="true" >
<Setter Property="..." Value="..." />
... more setters ...
</Trigger>
</Style.Triggers>
</Style>
Thanks! ListViewItem was the hint I needed.
Hi,
is it possible the set the style of a selected item in the WrapPanel?