WPF ListView - 如何设置所选项目背景颜色?

时间:2009-07-20 12:36:30

标签: wpf listview background

我目前有这个,但它只适用于前景色。

任何帮助都会受到影响:D

<Style.Triggers>
    <Trigger Property="IsSelected" Value="true">
        <Setter Property="Foreground" Value="Red" />
        <Setter Property="Background" Value="Green"/> 
    </Trigger>
</Style.Triggers>

2 个答案:

答案 0 :(得分:28)

这将处理背景颜色,也许它也可以帮助您找到前景的解决方案,这来自http://blogs.msdn.com/wpfsdk/archive/2007/08/31/specifying-the-selection-color-content-alignment-and-background-color-for-items-in-a-listbox.aspx

<Style TargetType="ListBoxItem">
    <Style.Resources>
        <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Green"/>
    </Style.Resources>
</Style>

答案 1 :(得分:0)

ListViewItem的Border子元素名为“Bd”,用于处理背景绘制。

<Setter TargetName="Bd" Value="Green" Property="Background" />