ListView 中的动态突出显示颜色

发布于 2024-12-05 14:52:18 字数 41 浏览 0 评论 0原文

如何使背景突出显示颜色依赖于 ListViewItem 的某些属性?

How can I make background highlight color dependent on some property of ListViewItem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乜一 2024-12-12 14:52:18

这是人们经常询问的问题。实际上,由于某些原因,当在 ListView 或 ListBox 中选择一项时,背景颜色不会改变。这有点棘手。事实上,您需要覆盖项目模板绑定到的静态颜色资源的值。因此,要更改项目的突出显示颜色,您必须这样做:

<ListView>
    <ListView.ItemContainerStyle>
        <Style TargetType="{x:Type ListViewItem}">
            <Style.Resources>
                <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Orange"/>
            </Style.Resources>
        </Style>
    </ListView.ItemContainerStyle>
</List>

这是更详细的解释:ListBoxItem 的触发器

This is an issue that people often ask for. Actually, for some reasons, when an item is selected in a ListView or ListBox, the Background color is not the one that is changed. It is a bit more tricky. In fact you need to override the value of the static color resources to which the item template is bound. So to change the higlighting colors of the items you have to do like this:

<ListView>
    <ListView.ItemContainerStyle>
        <Style TargetType="{x:Type ListViewItem}">
            <Style.Resources>
                <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Orange"/>
            </Style.Resources>
        </Style>
    </ListView.ItemContainerStyle>
</List>

Here is a more developed explanation: Trigger for ListBoxItem

哆兒滾 2024-12-12 14:52:18

编辑:

要更改所选背景,您必须覆盖 ListViewItem 的模板。

请参阅此... http://msdn.microsoft .com/en-us/library/ms788717(v=vs.90).aspx

{StaticResource SelectedBackgroundBrush} 替换为模板中您首选的背景画笔。


要根据控件模板不依赖的任何其他属性更改背景,您可以使用触发器...

 <ListView ...>
  <ListView.Resources>
   <Style TargetType="{x:Type ListViewItem}">
     <Style.Triggers>
       <Trigger Property="SomeListViewItemProperty" Value="Value1">
         <Setter Property="Background" Value="Red" />
       </Trigger>
       <Trigger Property="SomeListViewItemProperty" Value="Value2">
         <Setter Property="Background" Value="Yellow" />
       </Trigger>
     </Style.Triggers>
   </Style>
  <ListView.Resources>
 </ListView>

我希望这能回答您的问题。

EDIT:

For changing selected background, you will have to override the ListViewItem's Template.

See this... http://msdn.microsoft.com/en-us/library/ms788717(v=vs.90).aspx.

Replace the {StaticResource SelectedBackgroundBrush} with your preferred background brush in the template.


To change backgrounds based on ANY other property that the control template does not rely upon, You can use triggers ...

 <ListView ...>
  <ListView.Resources>
   <Style TargetType="{x:Type ListViewItem}">
     <Style.Triggers>
       <Trigger Property="SomeListViewItemProperty" Value="Value1">
         <Setter Property="Background" Value="Red" />
       </Trigger>
       <Trigger Property="SomeListViewItemProperty" Value="Value2">
         <Setter Property="Background" Value="Yellow" />
       </Trigger>
     </Style.Triggers>
   </Style>
  <ListView.Resources>
 </ListView>

I hope this answers your question.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文