How i change ListView Item Background Color according to listview item HarfNotu value in wpf

大兔子大兔子 提交于 2019-11-29 01:28:07

You can Style the ListViewItem in xaml directly,

Example:

Assuming your "Harf" variable is a string, you can try

<ListView Name="notListView"
          Width="550"
          HorizontalAlignment="Left">
  <ListView.Resources>
    <Style TargetType="{x:Type ListViewItem}">
      <Style.Triggers>
        <DataTrigger Binding="{Binding Harf}"
                      Value="1">
          <Setter Property="Background"
                  Value="Red" />
        </DataTrigger>
      </Style.Triggers>
    </Style>
  </ListView.Resources>
  ...

Now any ListView Row with "Harf" Value of 1 will have a "Red" Background

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!