1

我有一个 ListView,每个项目都有三个 TextBlock。第一个具有默认颜色(黑色),其他具有属性 Foreground 设置为灰色。

当我选择一个项目时,第一个 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  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(黑色)。如果我将第一个文本块的文本颜色指定为黑色,则在选择该项目时文本不再改变颜色。

图片 : 在此处输入图像描述

4

3 回答 3

4

DataTemplate您可以通过将代码从拥有a 转换为ListViewItem拥有a 来实现您想要做的事情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>

然后我从ListViewXAML 中删除了 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在您的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;
    }
}

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

于 2013-11-04T16:25:40.237 回答
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>
于 2013-11-04T13:00:43.013 回答
0

Foreground 尝试对 listView 项目使用样式:

 <Style TargetType="{x:Type ListViewItem}">
      <Style.Triggers>
           <Trigger Property="IsSelected" Value="True">
                    <Setter Property="Foreground" Value="White"/>
           </Trigger>
       </Style.Triggers>
 </Style>
于 2013-11-04T11:26:53.547 回答