DataGrid.AlternatingRowBackground Propriété

Définition

Obtient ou définit le pinceau d'arrière-plan utilisé sur les lignes de remplacement.

public:
 property System::Windows::Media::Brush ^ AlternatingRowBackground { System::Windows::Media::Brush ^ get(); void set(System::Windows::Media::Brush ^ value); };
public System.Windows.Media.Brush AlternatingRowBackground { get; set; }
member this.AlternatingRowBackground : System.Windows.Media.Brush with get, set
Public Property AlternatingRowBackground As Brush

Valeur de propriété

Brush

Brush utilisé pour peindre l'arrière-plan de chaque nième ligne où n est défini par la propriété AlternationCount. La valeur par défaut enregistrée est null. Pour plus d'informations sur ce qui peut influencer la valeur, consultez DependencyProperty.

Exemples

L’exemple suivant montre comment définir des couleurs d’arrière-plan de ligne alternées sur le DataGrid.

<DataGrid x:Name="CustomerGrid" ItemsSource="{Binding}" AlternatingRowBackground="LightBlue" AlternationCount="2" />

L’illustration suivante montre comment ce code ressemble lorsqu’il s’exécute.

Trois couleurs de remplacement pour l’arrière-plan de ligne

Remarques

Les AlternatingRowBackgroundpropriétés et AlternationCount les propriétés RowBackgrounddéterminent ensemble l’apparence de l’arrière-plan de chaque ligne.

Si AlternationCount elle est inférieure à 2, la définition de la AlternatingRowBackground propriété a AlternationCount la valeur 2.

S’applique à

Voir aussi