我在页面上有两个listView。我在第一个中选择Item,然后在第二个中选择。该 我在第一次取消选中时选择的项目。
如何在两个列表视图中包含所选项目?
答案 0 :(得分:0)
只需覆盖ControlBrush即可设置非活动突出显示颜色。
<Style TargetType="ListViewItem">
<Style.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="{x:Static SystemColors.HighlightColor}"/>
</Style.Resources>
</Style>