C# 使用NPOI 设置保存的表格样式

       通常我们直接通过NPOI实现保存功能,不设置任何样式,那么通常是版型非常普通,没有字体设置、 颜色设置 、单元格 等设置。 使保存出来的表格显示的非常普通。不具有视觉冲击感。也不能突出显示我们想要提示的信息。如下图 我们设置 保存的表格的Style 效果为 表头背景颜色填充为绿色。字体加粗 居中显示。 表单的内容全部居中 表头长的进行设置相应的列宽。

文章建议:阅读下前篇点击此处icon-default.png?t=N7T8https://blog.csdn.net/qq_71897293/article/details/129124984?spm=1001.2014.3001.5502

实现效果 如下图 

设置   内容 1   表头的填充颜色

           内容 2   表头的首行白字 加粗 居中

           内容3   表单的居中地与出生地的宽度设置

           内容4   表单的内容居中

样式一

    /// <summary>
        /// 表格标题样式
        /// </summary>
        /// <param name="workbook"></param>
        /// <returns></returns>
        private static ICellStyle Tableheaderstyle(IWorkbook workbook)
        {
            ICellStyle style = workbook.CreateCellStyle();
            style.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Center; // 设置水平居中显示
            style.VerticalAlignment = NPOI.SS.UserModel.VerticalAlignment.Center; // 设置垂直居中显示
            style.FillForegroundColor = IndexedColors.White.Index; // 设置字体颜色为白色
            style.FillPattern = (FillPattern)1; // 设置填充模式
            style.FillForegroundColor = IndexedColors.Green.Index;//设置填充颜色
            style.WrapText = true; // 自动换行

            // 创建字体
            IFont font = workbook.CreateFont();
            font.Color = IndexedColors.White.Index; // 字体颜色为白色
            font.FontHeightInPoints = 10; // 字体大小
            font.IsBold = true;
            style.SetFont(font);
            return style;
        }

示例解释 :上述代码实现效果 :填充颜色、字体 白字 加粗 居中

样式二

   /// <summary>
        /// 表格内容居中
        /// </summary>
        /// <param name="workbook"></param>
        /// <returns></returns>
        private static ICellStyle Thetablecontentcentered(IWorkbook workbook)
        {
            ICellStyle cellStyle = workbook.CreateCellStyle();
            cellStyle.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Center;
            return cellStyle;
        }

示例解释: 上述代码实现效果 :字体  居中

扩展 设置列宽 是通过 表单 然后 设置的方法 SetColumnWidth 其中参数1是 设置的第几列 后面的是设置多宽!!!

 sheet.SetColumnWidth(i, 11 * 256);

如果前面这一行没看懂 那我粘贴出整个代码 

/// <summary>
        /// 写入成Excel数据
        /// </summary>
        /// <param name="dt">数据源</param>
        /// <param name="fileName">储存文件地址</param>
        public static void ExportToExcel<T>(DataTable dt, string fileName, T T1) where T : struct
        {
            if (fileName == null)
            {
                Paramecium.App.ViewModels.Communals.MessageBoxHelper.ShowDialog_StringResult("提示", "保存位置为空");
            }
            IWorkbook workbook = new XSSFWorkbook();
            string fileExt = Path.GetExtension(fileName).ToLower();
            //XSSFWorkbook 适用XLSX格式,HSSFWorkbook 适用XLS格式
            ISheet sheet = workbook.CreateSheet("数据");
            // 创建样式
            ICellStyle style = Tableheaderstyle(workbook);

            ICellStyle cellStyle = Thetablecontentcentered(workbook);

            IRow row = sheet.CreateRow(0);
            //表头
            if (T1 is Temp)
            {
                for (int i = 0; i < dt.Columns.Count; i++)
                {
                    if (i >= 8)  break;
                    sheet.SetColumnWidth(i, i * 25 * 100);
                    ICell cell = row.CreateCell(i);
                    cell.CellStyle = style;
                    cell.SetCellValue(((Temp)i).ToString());
                }
            }
            else if (T1 is weighcounter)
            {
                for (int i = 0; i < dt.Columns.Count; i++)
                {
                    if (i >= 8) break;
                    ICell cell = row.CreateCell(i); cell.CellStyle = style;
                    cell.SetCellValue(((weighcounter)i).ToString());
                }
            }
            else if (T1 is weighcounter2)
            {
                for (int i = 0; i < dt.Columns.Count; i++)
                {
                    //if (i >= 8) break;
                    ICell cell = row.CreateCell(i); cell.CellStyle = style;
                    cell.SetCellValue(((weighcounter2)i).ToString());
                }
            }
            else if (T1 is Liquidpumpprospecting)
            {
                for (int i = 0; i < dt.Columns.Count; i++)
                {
                    ICell cell = row.CreateCell(i); cell.CellStyle = style;
                    cell.SetCellValue(((Liquidpumpprospecting)i).ToString());
                }
            }


            for (int i = 0; i < dt.Rows.Count; i++)
            {
                IRow row1 = sheet.CreateRow(i + 1);

                for (int j = 0; j < dt.Columns.Count; j++)
                {
                    ICell cell = row1.CreateCell(j);
                    cell.CellStyle = cellStyle;
                    cell.SetCellValue(System.Convert.ToDouble(dt.Rows[i][j]).ToString("F2"));
                }
            }

            //保存为Excel文件
            using (FileStream fs = new FileStream(fileName, FileMode.Create, FileAccess.Write))
            {
                workbook.Write(fs);
            }
        }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

学软件开发的猪

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值