WPF ListView非活动选择颜色和元素字体颜色

时间:2009-04-27 15:05:19

标签: .net wpf listbox listboxitem

我可以设置ListView非活动选择颜色

我使用了以下问题中描述的解决方案

WPF ListView Inactive Selection Color

我需要更改所选非活动元素的字体颜色,有没有简单的方法来实现这个目标?

谢谢

2 个答案:

答案 0 :(得分:6)

不幸的是,你不能使用SystemColors.ControlTextBrushKey因为它在取消选择项目时被应用,或者当它被选中但是非活动时(你的问题看起来好像你只对后者感兴趣)。但是,您可以这样做:

<ListBox ...>
    <ListBox.Resources>
        <!-- this customizes the background color when the item is selected but inactive -->
        <SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}">Red</SolidColorBrush>
    </ListBox.Resources>
    <ListBox.ItemContainerStyle>
        <Style>
            <Style.Triggers>
                            <!-- this customizes the foreground color when the item is selected but inactive -->
                <Trigger Property="Selector.IsSelected" Value="True">
                    <Setter Property="TextElement.Foreground" Value="Blue"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </ListBox.ItemContainerStyle>
</ListBox>

答案 1 :(得分:3)

对我而言,无论是活动的还是非活动的ListBox,所选项目的前景色和背景色都是相同的。

<ListBox.ItemContainerStyle>
  <Style TargetType="{x:Type ListBoxItem}">
    <Style.Resources>
      <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="DodgerBlue"/>
      <SolidColorBrush x:Key="{x:Static SystemColors.HighlightTextBrushKey}" Color="White"/>
      <SolidColorBrush x:Key="{x:Static SystemColors.InactiveSelectionHighlightBrushKey}" Color="DodgerBlue"/>
      <SolidColorBrush x:Key="{x:Static SystemColors.InactiveSelectionHighlightTextBrushKey}" Color="White"/>
    </Style.Resources>        
  </Style>
</ListBox.ItemContainerStyle>