WPF ListView突出显示颜色不会更改

时间:2013-11-04 11:00:42

标签: wpf xaml listview highlight listviewitem

我有一个ListView,每个Item有三个TextBlock。 第一个具有默认颜色(黑色),其他具有前景属性设置为灰色。

当我选择一个项目时,第一个TextBlock的颜色变为蓝色,但其他颜色保持灰色并且难以阅读。

我想要在选择项目时所有文本都变成白色。 我是怎么做到的?

编辑: 我的风格:

 <UserControl.Resources>
        <Style TargetType="{x:Type ListViewItem}">
            <Style.Triggers>
                <Trigger Property="IsSelected" Value="True">
                    <Setter Property="Foreground" Value="White"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </UserControl.Resources>

我的ListView

        <ListView  x:Name="lvResultat"  Grid.Row="0" Grid.Column="1" Background="{x:Null}"  
                      Margin="4"                       
                      HorizontalContentAlignment="Stretch"
                           ScrollViewer.VerticalScrollBarVisibility="Auto"
                      ScrollViewer.HorizontalScrollBarVisibility="Disabled"
                      IsSynchronizedWithCurrentItem="True"    

                      ItemsSource="{Binding ResultatsRecherche}" SelectedItem="{Binding ResultatSelectione, Mode=TwoWay}" BorderBrush="{x:Null}" MouseDoubleClick="lvResultat_MouseLeftDoubleClick" >
        <ListView.ItemTemplate>
            <DataTemplate DataType="viewModel:ResultatRechercheViewModel">
                <Grid Height="86" Margin="2"  >
                    <Grid.RowDefinitions>
                        <RowDefinition Height="1.5*"/>
                        <RowDefinition Height="1*"/>
                        <RowDefinition Height="1*"/>
                        <RowDefinition Height="0.5*"/>
                    </Grid.RowDefinitions>
                    <TextBlock Text="{Binding Titre}" 
                                       FontSize="20" FontWeight="Bold"  />
                    <TextBlock Text="{Binding SousTitre}" Grid.Row="1" 
                                       FontStyle="Italic" Foreground="Gray"/>
                    <TextBlock Text="{Binding Resume}" Grid.Row="2"  TextTrimming="WordEllipsis"
                                        Foreground="Gray"/>

                </Grid>
            </DataTemplate>
        </ListView.ItemTemplate>
    </ListView>

我也尝试过像

这样的事情
<Style TargetType="ListViewItem">
    <Style.Resources>
        <!--<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="White" />-->
        <SolidColorBrush x:Key="{x:Static SystemColors.HighlightTextBrushKey}" Color="White" />
        <SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="White" />
    </Style.Resources>
</Style>

编辑2: 我发现自定义样式会更改Textblock的颜色,其默认属性为Foreground(黑色)。 如果我为第一个文本块的文本颜色指定黑色,则在选择项目时文本不再更改颜色。

图片: enter image description here

3 个答案:

答案 0 :(得分:4)

您可以将代码从DataTemplate ListViewItem转换为ControlTemplate

,从而实现您的目标。

这就是我的尝试:

ListViewItem样式:

<Style TargetType="ListViewItem">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type ListViewItem}">
                <Border x:Name="ContentBorder"
                                Background="{TemplateBinding Background}"
                                BorderBrush="{TemplateBinding BorderBrush}"
                                BorderThickness="{TemplateBinding BorderThickness}"
                                Margin="4">
                    <Grid Height="86" Margin="2"  >
                        <Grid.RowDefinitions>
                            <RowDefinition Height="1.5*"/>
                            <RowDefinition Height="1*"/>
                            <RowDefinition Height="1*"/>
                            <RowDefinition Height="0.5*"/>
                        </Grid.RowDefinitions>
                        <TextBlock Text="{Binding Titre}" 
                               FontSize="20" FontWeight="Bold"  />
                        <TextBlock Text="{Binding SousTitre}" Grid.Row="1" Name="st"
                               FontStyle="Italic" Foreground="Gray"/>
                        <TextBlock Text="{Binding Resume}" Grid.Row="2"  TextTrimming="WordEllipsis" Name="r"
                                Foreground="Gray"/>
                    </Grid>
                </Border>
                <ControlTemplate.Triggers>
                    <Trigger Property="IsSelected" Value="True">
                        <Setter Property="Foreground" TargetName="st" Value="White" />
                        <Setter Property="Foreground" TargetName="r" Value="White" />
                        <Setter Property="Background" TargetName="ContentBorder"  Value="DeepSkyBlue" />
                    </Trigger>
                </ControlTemplate.Triggers>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

然后我从ListView XAML:

中删除了DataTemplate
<ListView  x:Name="lvResultat"  Grid.Row="0" Grid.Column="1" Background="{x:Null}"  
           Margin="4"                       
           HorizontalContentAlignment="Stretch"
           ScrollViewer.VerticalScrollBarVisibility="Auto"
           ScrollViewer.HorizontalScrollBarVisibility="Disabled"
           IsSynchronizedWithCurrentItem="True"    
           ItemsSource="{Binding ResultatsRecherche}" SelectedItem="{Binding ResultatSelectione, Mode=TwoWay}" BorderBrush="{x:Null}" >
</ListView>

但是,如果您必须使用DateTemplate,那么您可以在IsSelectedViewModel上创建一个名为ResultatRechercheViewModel的属性,然后在该属性上使用DataTriggers在DataTemplate

更新了DataTemplate:

<ListView.ItemTemplate>
    <DataTemplate DataType="viewModel:ResultatRechercheViewModel">
        <Grid Height="86" Margin="2"  >
            <Grid.RowDefinitions>
                <RowDefinition Height="1.5*"/>
                <RowDefinition Height="1*"/>
                <RowDefinition Height="1*"/>
                <RowDefinition Height="0.5*"/>
            </Grid.RowDefinitions>
            <TextBlock Text="{Binding Titre}" 
                           FontSize="20" FontWeight="Bold"  />
            <TextBlock Text="{Binding SousTitre}" Grid.Row="1"  Name="st"
                           FontStyle="Italic" Foreground="Gray"/>
            <TextBlock Text="{Binding Resume}" Grid.Row="2"  TextTrimming="WordEllipsis" Name="r"
                            Foreground="Gray"/>

        </Grid>
        <DataTemplate.Triggers>
            <DataTrigger Binding="{Binding IsSelected}" Value="True">
                <Setter Property="Foreground" TargetName="st" Value="White" />
                <Setter Property="Foreground" TargetName="r" Value="White" />
            </DataTrigger>
        </DataTemplate.Triggers>
    </DataTemplate>
</ListView.ItemTemplate>

而且,您需要更新ViewModel代码以设置IsSelected属性,以下是我的MainViewModel中的代码:

public ResultatRechercheViewModel ResultatSelectione
{
    get { return _resultatSelectione; }
    set
    {
        if (_resultatSelectione != null)
        {
            _resultatSelectione.IsSelected = false;
        }

        _resultatSelectione = value;

        _resultatSelectione.IsSelected = true;
    }
}

希望这可以解决您的问题,或者为您解决问题提供一些想法。

答案 1 :(得分:3)

试试这个语法

<ListView>
    <ListView.ItemContainerStyle>
        <Style TargetType="{x:Type ListViewItem}">
            <Style.Triggers>
                <Trigger Property="IsSelected" Value="True">
                     <Setter Property="Foreground" Value="White"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </ListView.ItemContainerStyle>
    ...
</ListView>

答案 2 :(得分:0)

前景尝试使用listView项目的样式:

 <Style TargetType="{x:Type ListViewItem}">
      <Style.Triggers>
           <Trigger Property="IsSelected" Value="True">
                    <Setter Property="Foreground" Value="White"/>
           </Trigger>
       </Style.Triggers>
 </Style>