将DataGridVeiw导出为在C#中使用单元格背景色进行优化


你可以使用cells.interior.color

Range range = 
            oSheet.get_Range("A" + redRows.ToString(), "J"
                                    + redRows.ToString());

    range.Cells.Interior.Color = System.Drawing.Color.Red; 

有关更多信息,请查阅Microsoft Interop Excel来格式化Excel单元格


我得到了解决方案,我只是通过设置颜色的源代码,将每个单元格或DataGridView放入循环并遍历范围,应用颜色。

感谢大家的帮助

链接地址: http://www.djcxy.com/p/36773.html

上一篇: Export DataGridVeiw to excel in C# with cell background colors

下一篇: large datagridview export to excel