WPF ListView 鼠标点击,移动改变背景色不启作用

构建数据源

XML 复制代码
 <Window.Resources>
        <x:ArrayExtension x:Key="stringList"
                          xmlns="clr-namespace:System;assembly=mscorlib"
                          Type="String">
            <String>第一行</String>
            <String>第二行</String>
            <String>第三行</String>
            <String>第四行</String>
        </x:ArrayExtension>
    </Window.Resources>
  1. <ListView.ItemContainerStyle> + <ListView.View> 可以生效,背景色变颜色,

ListView.ItemContainerStyle 中存放触发器

ListView.View中存放数据

这样只能按列显示多列多行,不能多行多列作为一项显示

如下所示:

XML 复制代码
 <ListView Grid.Row="0" Name="ItemList" ItemsSource="{StaticResource stringList}" >
            <ListView.ItemContainerStyle>
                <Style TargetType="{x:Type ListViewItem}">
                    <Setter Property="FontSize" Value="15" />
                    <Setter Property="Margin" Value="0,-40,0,40" />
                    <Style.Triggers>
                        <Trigger Property="IsSelected" Value="True">
                            <Setter Property="Background" Value="#9C71B9" />
                            <Setter Property="Foreground" Value="white" />
                        </Trigger>
                        <Trigger Property="IsMouseOver" Value="True">
                            <Setter Property="Background" Value="Green" />
                            <Setter Property="Foreground" Value="white" />
                        </Trigger>
                        <Trigger Property="IsEnabled" Value="False">
                            <Setter Property="Background" Value="#757575" />
                            <Setter Property="Foreground" Value="black" />
                        </Trigger>
                    </Style.Triggers>
                </Style>
            </ListView.ItemContainerStyle>
            <ListView.View>
                <GridView>
                    <GridViewColumn>
                        <GridViewColumn Header="Name" Width="120" DisplayMemberBinding="{Binding}" />
                    </GridViewColumn>
                </GridView>
            </ListView.View>
        </ListView>
  1. <ListView.ItemContainerStyle> + <ListView.ItemTemplate> 不生效,背景色不改变颜色,

ListView.ItemContainerStyle 中存放触发器

ListView.ItemTemplate中存放数据

如下所示:

XML 复制代码
        <ListView  Name="ItemList" ItemsSource="{StaticResource stringList}">
            <ListView.ItemContainerStyle>
                <Style TargetType="{x:Type ListViewItem}">
                    <Setter Property="FontSize" Value="15" />
                    <Setter Property="Margin" Value="0,-40,0,40" />
                    <Style.Triggers>
                        <Trigger Property="IsSelected" Value="True">
                            <Setter Property="Background" Value="#9C71B9" />
                            <Setter Property="Foreground" Value="white" />
                        </Trigger>
                        <Trigger Property="IsMouseOver" Value="True">
                            <Setter Property="Background" Value="Green" />
                            <Setter Property="Foreground" Value="white" />
                        </Trigger>
                    </Style.Triggers>
                </Style>
            </ListView.ItemContainerStyle>
            <ListView.ItemTemplate>
                <DataTemplate>
                    <StackPanel >
                        <StackPanel Orientation="Horizontal">
                            <TextBlock Text="{Binding }" Height="30"  Name="Label_Amount" Width="100" Foreground="White"/>

                        </StackPanel>
                    </StackPanel>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>
  1. 只有ListView.ItemContainerStyle,可以生效

数据放在<Setter Property="Template">里,触发器放在 <Style.Triggers>,如下所示:

XML 复制代码
<ListView   Width="300" Height="400" x:Name="celist" ItemsSource="{StaticResource stringList}" Background="Black">
            <ListView.ItemContainerStyle>
                <Style TargetType="ListViewItem">
                    <Setter Property="Template">
                        <Setter.Value>
                            <ControlTemplate TargetType="ListBoxItem">
                                <Border Background="{TemplateBinding Background}">
                                    <StackPanel >
                                        <StackPanel Orientation="Horizontal">
                                            <TextBlock Text="{Binding }" Height="30"  Name="Label_Amount" Width="100" Foreground="White"/>
                                           
                                        </StackPanel>
                                        <StackPanel HorizontalAlignment="Left"  Orientation="Horizontal">
                                            <TextBlock Text="{Binding }" Name="Label_ShortDescription" Width="200" Foreground="White"/>

                                        </StackPanel>
                                    </StackPanel>
                                </Border>
                            </ControlTemplate>
                        </Setter.Value>
                    </Setter>

                    <Style.Triggers>
                        <Trigger Property="IsSelected" Value="True">
                            <Setter Property="Background" Value="#9C71B9" />
                            <Setter Property="Foreground" Value="white" />
                        </Trigger>
                        <Trigger Property="IsMouseOver" Value="True">
                            <Setter Property="Background" Value="Green" />
                            <Setter Property="Foreground" Value="white" />
                        </Trigger>
                    </Style.Triggers>
                </Style>
            </ListView.ItemContainerStyle>
        </ListView>
相关推荐
ephemerals__2 小时前
【c++丨STL】list模拟实现(附源码)
开发语言·c++·list
drebander3 小时前
使用 Java Stream 优雅实现List 转化为Map<key,Map<key,value>>
java·python·list
当下就是最好11 小时前
WPF应用程序的生命周期-笔记
wpf
熬夜学编程的小王11 小时前
【C++篇】深度解析 C++ List 容器:底层设计与实现揭秘
开发语言·数据结构·c++·stl·list
努力进修17 小时前
“探索Java List的无限可能:从基础到高级应用“
java·开发语言·list
‘’林花谢了春红‘’1 天前
C++ list (链表)容器
c++·链表·list
九鼎科技-Leo1 天前
什么是 WPF 中的依赖属性?有什么作用?
windows·c#·.net·wpf
阿龟在奔跑1 天前
引用类型的局部变量线程安全问题分析——以多线程对方法局部变量List类型对象实例的add、remove操作为例
java·jvm·安全·list
ashane13141 天前
Java list
java·windows·list
djk88881 天前
.net将List<实体1>的数据转到List<实体2>
数据结构·list·.net