GrapeCity SPREAD for WPF 2.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)})
関連トピック

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.