<DataGrid Grid.Row="1" ItemsSource="{Binding SalesList,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}" AutoGenerateColumns="False"> <DataGrid.RowStyle> <Style TargetType="DataGridRow"> <Setter Property="Background" > <Setter.Value> <Binding Path="SalesOrderDetailID" Converter="{StaticResource colorConverter}"/> </Setter.Value> </Setter> </Style> </DataGrid.RowStyle> <DataGrid.Columns> <DataGridTextColumn Header="SalesOrderID" Binding="{Binding SalesOrderID }"/> <DataGridTextColumn Header="SalesOrderDetailID" Binding="{Binding SalesOrderDetailID}"/> <DataGridTextColumn Header="ModifiedDate" Binding="{Binding ModifiedDate}"/> </DataGrid.Columns> </DataGrid>
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Data;
using System.Windows.Media;

namespace WpfApp39.Converter
{
    class ColorConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            int rowsIndex;
            if (value != null && int.TryParse(value.ToString(), out rowsIndex))
            {
                switch (rowsIndex % 5)
                {
                    case 0:
                        return new SolidColorBrush(Colors.Yellow);
                        
                    case 1:
                        return new SolidColorBrush(Colors.Purple);
                         
                    case 2:
                        return new SolidColorBrush(Colors.Red);
                         
                    case 3:
                        return new SolidColorBrush(Colors.Green);
                        
                    case 4:
                        return new SolidColorBrush(Colors.Blue);
                         
                    default:
                        return new SolidColorBrush(Colors.Yellow);
                }
            }

            return new SolidColorBrush(Colors.Purple);
        }

        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
}

WPF DataGrid row background converter datagrid 行背景随绑定数据变化,转换器

 

 

 

 

<DataGrid.RowStyle>
<Style TargetType="DataGridRow">
<Setter Property="Background" >
<Setter.Value>
<Binding Path="SalesOrderDetailID" Converter="{StaticResource colorConverter}"/>
</Setter.Value>
</Setter>
</Style>
</DataGrid.RowStyle>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-30
  • 2022-03-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-09
  • 2022-12-23
相关资源
相似解决方案