作成日: 2019/10/07 最終更新日: 2019/10/07
文書種別
使用方法
詳細
ヘッダの左上セル(コーナーヘッダセル)の背景色は、TopLeftCellBackgroundプロパティで設定することが可能です。
◎サンプルコード(Visual Basic)
◎サンプルコード(C#)
◎サンプルコード(Visual Basic)
flexgrid.TopLeftCells(0, 0) = "test"
flexgrid.TopLeftCellBackground = New SolidColorBrush(Colors.Red)
flexgrid.TopLeftCellBackground = New SolidColorBrush(Colors.Red)
◎サンプルコード(C#)
flexgrid.TopLeftCells[0, 0] = "test";
flexgrid.TopLeftCellBackground = new SolidColorBrush(Colors.Red);
flexgrid.TopLeftCellBackground = new SolidColorBrush(Colors.Red);
旧文書番号
84535