问题描述
StylestyleChange=workBook.Worksheets[0].Cells[0,0].GetStyle();styleChange.HorizontalAlignment=TextAlignmentType.Center;//居中styleChange.Font.IsBold=true;//黑体styleChange.Font.Color=Color.Gray;//字体设为灰色styleChange.ForegroundColor=Color.Blue;//背景设置为蓝色workBook.Worksheets[0].Cells[0,0].SetStyle(styleChange);上面的样式都可以实现,除了背景设置为蓝色。这个是代码错了,还是其他原因?
时间: 2024-11-29 16:21:39