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


"1" ItemsSource="{Binding SalesList,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}" AutoGenerateColumns="False"> "SalesOrderID" Binding="{Binding SalesOrderID }"/> "SalesOrderDetailID" Binding="{Binding SalesOrderDetailID}"/> "ModifiedDate" Binding="{Binding ModifiedDate}"/>
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 行背景随绑定数据变化,转换器_第1张图片

 

 

 

 



你可能感兴趣的:(WPF DataGrid row background converter datagrid 行背景随绑定数据变化,转换器)