上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 60 下一页
摘要: 第十二章:Excel文件导入导出 12.1 导出Excel文件 using unvell.ReoGrid.IO; public class ExcelExport { private ReoGridControl grid; // 导出为Excel 2007+格式 public void Expor 阅读全文
posted @ 2025-12-31 14:07 我才是银古 阅读(9) 评论(0) 推荐(0)
摘要: 第十章:行列操作与分组 10.1 行列分组 public class RowColumnGrouping { private Worksheet sheet; // 创建行分组 public void CreateRowGroup(int startRow, int endRow) { sheet. 阅读全文
posted @ 2025-12-31 14:07 我才是银古 阅读(7) 评论(0) 推荐(0)
摘要: 第九章:冻结窗格与视图控制 9.1 冻结窗格 public class FreezePanes { private Worksheet sheet; // 冻结首行 public void FreezeTopRow() { sheet.FreezeToCell(1, 0); } // 冻结首列 pu 阅读全文
posted @ 2025-12-31 14:07 我才是银古 阅读(5) 评论(0) 推荐(0)
摘要: 第八章:数据验证与条件格式 8.1 数据验证基础 ReoGrid支持对单元格数据进行验证,确保输入的数据符合特定规则。 using unvell.ReoGrid.DataValidation; public class DataValidationBasics { private Worksheet 阅读全文
posted @ 2025-12-31 14:07 我才是银古 阅读(6) 评论(0) 推荐(0)
摘要: 第七章:公式与计算引擎 7.1 公式基础 7.1.1 公式概述 ReoGrid支持类似Excel的公式计算功能,可以使用内置函数和自定义函数。 using unvell.ReoGrid; public class FormulaBasics { private Worksheet sheet; // 阅读全文
posted @ 2025-12-31 14:07 我才是银古 阅读(6) 评论(0) 推荐(0)
摘要: 第六章:样式与外观定制 6.1 字体样式 6.1.1 基本字体设置 using System.Drawing; using unvell.ReoGrid.Data; public class FontStyling { private Worksheet sheet; public FontStyl 阅读全文
posted @ 2025-12-31 14:07 我才是银古 阅读(9) 评论(0) 推荐(0)
摘要: 第五章:数据类型与格式化 5.1 数据类型概述 5.1.1 ReoGrid支持的数据类型 ReoGrid支持多种数据类型,可以自动识别和处理不同类型的数据: using unvell.ReoGrid; using unvell.ReoGrid.Data; public class DataTypeE 阅读全文
posted @ 2025-12-31 14:07 我才是银古 阅读(20) 评论(0) 推荐(0)
摘要: 第二十章:实战案例与综合应用 20.1 案例一:数据分析报表系统 20.1.1 需求分析 创建一个数据分析报表系统,支持: 数据导入(Excel、CSV、数据库) 数据统计分析 图表可视化 报表导出 20.1.2 实现代码 public class DataAnalysisSystem { priv 阅读全文
posted @ 2025-12-31 14:07 我才是银古 阅读(7) 评论(0) 推荐(0)
摘要: 第十九章:高级应用与扩展 19.1 插件系统 public interface IReoGridPlugin { string Name { get; } string Description { get; } void Initialize(ReoGridControl grid); void U 阅读全文
posted @ 2025-12-31 14:07 我才是银古 阅读(5) 评论(0) 推荐(0)
摘要: 第四章:工作表与单元格操作 4.1 单元格数据读写 4.1.1 基本读写操作 using unvell.ReoGrid; public class CellBasicOperations { private Worksheet sheet; public CellBasicOperations(Re 阅读全文
posted @ 2025-12-31 14:06 我才是银古 阅读(17) 评论(0) 推荐(0)
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 60 下一页