<ListBox>
<ListBox.ItemTemplate>
<DataTemplate>
<Grid Width="225" Height="126" FocusVisualStyle="{x:Null}">
<TextBlock
x:Name="sortIndex"
FontFamily="微软雅黑" FontSize="18" Foreground="Black"
HorizontalAlignment="Left" VerticalAlignment="Top"
Text="test"/>
</Grid>
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding Path=IsSelected, RelativeSource={RelativeSource Mode=FindAncestor,AncestorLevel=1,AncestorType={x:Type ListBoxItem}}}" Value="True">
<Setter Property="Foreground" TargetName="sortIndex" Value="White"/>
</DataTrigger>
</DataTemplate.Triggers>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<ListBox>
<ListBox.ItemTemplate>
<D