spread for wpf 如何修改spread的背景颜色?
<ss:GcSpreadSheet Name="Spreadsheet1"Background="#FF393939" /> 设置了背景颜色好像是没有什么效果。本帖最后由 dexteryao 于 2017-4-26 16:24 编辑
您要设置整个单元格背景色可以设置
gcSpreadSheet1.ActiveSheet.DefaultStyle.Background = new SolidColorBrush(Colors.Blue);
设置空白区域
gcSpreadSheet1.Background = new SolidColorBrush(Colors.Blue);
把整个背景换了,现在显示的是白色,我想换成黑色的 那就是第一条
gcSpreadSheet1.ActiveSheet.DefaultStyle.Background = new SolidColorBrush(Colors.Black);
页:
[1]