ak47 发表于 2017-4-26 12:00:18

spread for wpf 如何修改spread的背景颜色?

<ss:GcSpreadSheet Name="Spreadsheet1"Background="#FF393939" /> 设置了背景颜色好像是没有什么效果。

dexteryao 发表于 2017-4-26 16:22:46

本帖最后由 dexteryao 于 2017-4-26 16:24 编辑

您要设置整个单元格背景色可以设置

            gcSpreadSheet1.ActiveSheet.DefaultStyle.Background = new SolidColorBrush(Colors.Blue);
设置空白区域

            gcSpreadSheet1.Background = new SolidColorBrush(Colors.Blue);

ak47 发表于 2017-4-26 16:34:06

把整个背景换了,现在显示的是白色,我想换成黑色的

dexteryao 发表于 2017-4-26 17:53:48

那就是第一条
gcSpreadSheet1.ActiveSheet.DefaultStyle.Background = new SolidColorBrush(Colors.Black);
页: [1]
查看完整版本: spread for wpf 如何修改spread的背景颜色?