DataGrid.AlternatingRowBackground Propiedad

Definición

Obtiene o establece el pincel de fondo que se utiliza en las filas alternas.

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

Valor de propiedad

Brush que pinta el segundo plano de cada enésima fila donde n está definida por la propiedad AlternationCount. El valor predeterminado registrado es null. Para obtener más información sobre lo que puede afectar al valor, vea DependencyProperty.

Ejemplos

En el ejemplo siguiente se muestra cómo establecer colores de fondo de fila alternados en .DataGrid

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

En la ilustración siguiente se muestra cómo se ve este código cuando se ejecuta.

Tres colores alternados para el fondo de fila

Comentarios

Las AlternatingRowBackgroundpropiedades , RowBackgroundy AlternationCount juntas determinan la apariencia del fondo de cada fila.

Si AlternationCount es menor que 2, al establecer la AlternatingRowBackground propiedad se establece AlternationCount en 2.

Se aplica a

Consulte también