web-dev-qa-db-fra.com

Comment définir la ligne DataGrid Background, basée sur une valeur de propriété à l'aide de liaisons de données

Dans mon code XAML, je souhaite définir la couleur Background de chaque ligne, en fonction de la valeur de l'objet dans une ligne spécifique. J'ai un ObservableCollection sur z, et chacun des z possède une propriété appelée State. J'ai commencé avec quelque chose comme ça dans mon DataGrid:

<DataGrid.RowStyle>
    <Style TargetType="DataGridRow">
        <Setter Property="Background" 
                Value="{Binding z.StateId, Converter={StaticResource StateIdToColorConverter}}"/>
     </Style>
</DataGrid.RowStyle>

C'est une mauvaise approche car x n'est pas une propriété de ma classe ViewModel.

Dans ma classe ViewModel, j'ai un ObservableCollection<z> qui est le ItemsSource de ce DataGrid et un SelectedItem de type z.

Je pourrais lier la couleur à SelectedItem, mais cela ne changera qu'une ligne dans le DataGrid.

Comment puis-je, en fonction d'une propriété, modifier cette couleur d'arrière-plan de lignes?

66

Utilisez un DataTrigger:

<DataGrid ItemsSource="{Binding YourItemsSource}">
    <DataGrid.RowStyle>
        <Style TargetType="DataGridRow"> 
            <Style.Triggers>
                <DataTrigger Binding="{Binding State}" Value="State1">
                    <Setter Property="Background" Value="Red"></Setter>
                </DataTrigger>
                <DataTrigger Binding="{Binding State}" Value="State2">
                    <Setter Property="Background" Value="Green"></Setter>
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </DataGrid.RowStyle>
</DataGrid>
144
Nitesh

La même chose peut être faite sans DataTrigger aussi:

 <DataGrid.RowStyle>
     <Style TargetType="DataGridRow">
         <Setter Property="Background" >
             <Setter.Value>
                 <Binding Path="State" Converter="{StaticResource BooleanToBrushConverter}">
                     <Binding.ConverterParameter>
                         <x:Array Type="SolidColorBrush">
                             <SolidColorBrush Color="{StaticResource RedColor}"/>
                             <SolidColorBrush Color="{StaticResource TransparentColor}"/>
                         </x:Array>
                     </Binding.ConverterParameter>
                 </Binding>
             </Setter.Value>
         </Setter>
     </Style>
 </DataGrid.RowStyle>

BooleanToBrushConverter est la classe suivante:

public class BooleanToBrushConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (value == null)
            return Brushes.Transparent;

        Brush[] brushes = parameter as Brush[];
        if (brushes == null)
            return Brushes.Transparent;

        bool isTrue;
        bool.TryParse(value.ToString(), out isTrue);

        if (isTrue)
        {
            var brush =  (SolidColorBrush)brushes[0];
            return brush ?? Brushes.Transparent;
        }
        else
        {
            var brush = (SolidColorBrush)brushes[1];
            return brush ?? Brushes.Transparent;
        }
    }

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

En XAML, ajoutez et définissez un propriété RowStyle pour le DataGrid avec pour objectif de définir le arrière-plan de la ligne, sur la couleur définie dans mon objet Employé.

<DataGrid AutoGenerateColumns="False" ItemsSource="EmployeeList">
   <DataGrid.RowStyle>
        <Style TargetType="DataGridRow">
             <Setter Property="Background" Value="{Binding ColorSet}"/>
        </Style>
   </DataGrid.RowStyle>

Et dans ma classe d'employés

public class Employee {

    public int Id { get; set; }
    public string Name { get; set; }
    public int Age { get; set; }

    public string ColorSet { get; set; }

    public Employee() { }

    public Employee(int id, string name, int age)
    {
        Id = id;
        Name = name;
        Age = age;
        if (Age > 50)
        {
            ColorSet = "Green";
        }
        else if (Age > 100)
        {
            ColorSet = "Red";
        }
        else
        {
            ColorSet = "White";
        }
    }
}

Ainsi, chaque ligne du DataGrid a le couleur de fond du ColorSetpropriété de mon objet.

4
NICK_WANTED