图一 我想知道如何设置c1:C1DataGrid 行的单元格背景色。 如图一第二行第一列 设置无色。
我试了一下,无法指定单元格。
Style rowBackground = new Style(typeof(DataGridCellPresenter));
rowBackground.Setters.Add(new Setter(DataGridCellPresenter.BackgroundProperty, new SolidColorBrush(Colors.White)));
C1DataGrid[1, 0].Row.CellStyle = rowBackground;
|