| 123456789101112131415161718192021222324252627282930313233343536 |
- <ResourceDictionary
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:UI="clr-namespace:SHJX.Service.Library.ImitationUniform.elemetation">
- <Style x:Key="ItemContainerStyle" TargetType="{x:Type UI:ListViewImitationUniform}">
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type UI:ListViewImitationUniform}">
- <Border
- x:Name="Bd"
- Background="{TemplateBinding Background}"
- BorderBrush="{TemplateBinding BorderBrush}"
- BorderThickness="0">
- <ContentPresenter />
- </Border>
- <ControlTemplate.Triggers>
- <Trigger Property="IsSelected" Value="true">
- <Setter TargetName="Bd" Property="Background" Value="Transparent" />
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- <Setter Property="ItemContainerStyle" Value="{StaticResource ItemContainerStyle}" />
- <Setter Property="Background" Value="Transparent" />
- <Setter Property="ItemTemplate">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type UI:ListViewImitationUniform}">
- <UniformGrid Columns="{TemplateBinding ItemColumns}" Rows="{TemplateBinding ItemRows}" />
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- </ResourceDictionary>
|