DataGridRow.AlternationIndex Property

Definition

Gets the index of the row within a set of alternating rows.

public:
 property int AlternationIndex { int get(); };
public int AlternationIndex { get; }
member this.AlternationIndex : int
Public ReadOnly Property AlternationIndex As Integer

Property Value

The index of the row within a set of alternating rows. The registered default is 0. For information about what can influence the value, see DependencyProperty.

Remarks

Alternating rows are rows to which you can assign different characteristics, such as alternating background colors. You can set the AlternationCount property of the DataGrid to indicate the number of rows within a set of alternating rows. For more information about alternating rows, see ItemsControl.AlternationCount.

Override the OnPropertyChanged method to respond to changes to the AlternationIndex property. The AlternationIndex property does not have its own property changed method because the AlternationIndexProperty field reuses the read-only ItemsControl.AlternationIndexProperty field.

Applies to

See also