SPREAD for WPF 3.0J - GcSpreadGrid
1行おきに背景色
GrapeCity SPREAD for WPF 3.0J > 開発者ガイド > > 1行おきに背景色

1行おきに背景色を設定するなど、一定の行数おきに交互に外観を適用できます。

1行おきに背景色

交互の行に外観を設定するには AlternatingRow クラスを使用して外観を設定します。そして、コントロールの AlternatingRows プロパティで交互の行のコレクションを参照し Add メソッドで追加します。

サンプルコード

次のサンプルコードは2色の背景色を交互に設定します。

C#
コードのコピー
gcSpreadGrid1.AlternatingRows.Add(new AlternatingRow() { Background=new SolidColorBrush(Colors.AliceBlue)});
gcSpreadGrid1.AlternatingRows.Add(new AlternatingRow() { Background = new SolidColorBrush(Colors.AntiqueWhite) });
Visual Basic
コードのコピー
GcSpreadGrid1.AlternatingRows.Add(New AlternatingRow() With {.Background = New SolidColorBrush(Colors.AliceBlue)})
GcSpreadGrid1.AlternatingRows.Add(New AlternatingRow() With {.Background = New SolidColorBrush(Colors.AntiqueWhite)})
関連トピック