提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
原创|使用教程|编辑:何家巧|2022-12-20 10:18:24.490|阅读 181 次
概述:在本文中,我们将演示如何使用 FastReport .NET 从 JetBrains Rider 创建、构建和导出 PDF 报告/文档,一起来看看吧~
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
Fastreport是目前世界上主流的图表控件,具有超高性价比,以更具成本优势的价格,便能提供功能齐全的报表解决方案,连续三年蝉联全球文档创建组件和库的“ Top 50 Publishers”奖。
慧都科技是Fast Reports在中国区十余年的友好合作伙伴,连续多年被Fast Reports授予中国区Best Partner称号。
在本文中,我们将在不使用 Microsoft Visual Studio 的情况下了解 Windows 11 中的 .NET 平台,并创建可导出为 PDF 的报告。与Visual Studio 相似的是 JetBrains Ride,它是由 JetBrains 开发的跨平台 .NET IDE,支持 C#、VB.NET 和 F# 语言。接下来,我们将演示如何使用 FastReport .NET 从 JetBrains Rider 创建、构建和导出 PDF 报告/文档。
第一步,您需要在电脑上安装 JetBrains Rider IDE。接下来,通过选择“New Solution ”创建一个新的解决方案。
我们首先需要在应用代码中为我们的报告添加一个简单的样本数据集,请在Form1.cs中添加:
using System.Data;
接下来,在Form1类中添加一个私有字段。
private DataSet _fDataSet = new DataSet();
让我们添加一个私有的CreateDataSet方法,在这里我们将创建并填入一个数据集:
private void CreateDataSet()
{
// create simple dataset with one table
// create simple dataset
_fDataSet = new DataSet();
// create a table
DataTable table = new DataTable();
table.TableName = "Employees";
// adding a table to the dataset
_fDataSet.Tables.Add(table);
// adding data to a table
table.Columns.Add("ID", typeof(int));
table.Columns.Add("Name", typeof(string));
table.Rows.Add(1, "Andrew Fuller");
table.Rows.Add(2, "Nancy Davolio");
table.Rows.Add(3, "Margaret Peacock");
}
添加对CreateDataSet方法的调用:
public Form1()
{
InitializeComponent();
CreateDataSet();
}
在 JetBrains Rider 中让 FastReport .NET 运行得最快方法是什么?那就是使用快速报告私有 NuGet 服务器。
接下来我们介绍在购买 FastReport .NET 后如何添加 NuGet 包。首选您需要单击 IDE 底部的 NuGet 选项卡,然后单击源选项卡。
现在我们通过单击“+”并输入必要的数据来添加一个新的存储库:
- 名称 — 不带空格的源名称(例如 FR-Nuget);
您将看到相应的存储库:
现在我们将安装 FastReport.Pro 包。为此,请转到“包”选项卡并按 FR-Nuget 存储库过滤包。当然,安装找到的包。
如果成功,您将看到一条通知。
接下来在Form1.cs中添加:
public Form1()
{
InitializeComponent();
CreateDataSet();
}
接下来,我们将在应用程序中插入 3 个新按钮:“报表设计”、“使用对话框导出为 PDF”、“无提示导出”。为此,对 Form1.Designer.cs 进行适当的更改:
// <summary>
// Required method for Designer support - do not modify
// the contents of this method with the code editor.
// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Text = "Form1";
this.btnExportWithDialog = new System.Windows.Forms.Button();
this.btnSilentExport = new System.Windows.Forms.Button();
this.btnShowDesigner = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnExportWithDialog
//
this.btnExportWithDialog.Location = new System.Drawing.Point(44, 148);
this.btnExportWithDialog.Name = "btnExportWithDialog";
this.btnExportWithDialog.Size = new System.Drawing.Size(208, 23);
this.btnExportWithDialog.TabIndex = 0;
this.btnExportWithDialog.Text = "Export to PDF with dialog";
this.btnExportWithDialog.UseVisualStyleBackColor = true;
this.btnExportWithDialog.Click += new System.EventHandler(this.btnExportWithDialog_Click);
//
// btnSilentExport
//
this.btnSilentExport.Location = new System.Drawing.Point(44, 180);
this.btnSilentExport.Name = "btnSilentExport";
this.btnSilentExport.Size = new System.Drawing.Size(208, 23);
this.btnSilentExport.TabIndex = 0;
this.btnSilentExport.Text = "Silent export";
this.btnSilentExport.UseVisualStyleBackColor = true;
this.btnSilentExport.Click += new System.EventHandler(this.btnSilentExport_Click);
//
// btnShowDesigner
//
this.btnShowDesigner.Location = new System.Drawing.Point(44, 87);
this.btnShowDesigner.Name = "btnShowDesigner";
this.btnShowDesigner.Size = new System.Drawing.Size(208, 23);
this.btnShowDesigner.TabIndex = 1;
this.btnShowDesigner.Text = "Report design";
this.btnShowDesigner.UseVisualStyleBackColor = true;
this.btnShowDesigner.Click += new System.EventHandler(this.btnShowDesigner_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.btnShowDesigner);
this.Controls.Add(this.btnSilentExport);
this.Controls.Add(this.btnExportWithDialog);
this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.Name = "Form1";
this.Text = "ExportToPDF";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnExportWithDialog;
private System.Windows.Forms.Button btnSilentExport;
private System.Windows.Forms.Button btnShowDesigner;
让我们使用这段代码为“报表设计”按钮编写一个点击处理程序。
private void btnShowDesigner_Click(object sender, EventArgs e)
{
// create report instance
Report report = new Report();
// load the existing report
//report.Load(@"..\..\..\Report.frx");
// register the dataset
report.RegisterData(_fDataSet);
report.GetDataSource("Employees").Enabled = true;
// run the designer
report.Design();
// free resources used by report
report.Dispose();
}
运行应用程序并查看带有 3 个按钮的表单。
单击“报表设计”按钮并转到 FastReport .NET 设计器。
让我们使用拖放操作将数据集中的字段添加到报告模板,然后将“员工”标题添加到报告中。之后,为文本对象设置 AutoWidth = true 属性。
让我们将我们的报告模板保存在 ReportPDF_Core_WinFormsApp 项目所在的文件夹中,名称为“Report”。保存后,关闭设计器和应用程序。让我们取消注释 btnExportWithDialog_Click 方法中的行,以便在打开设计器时加载我们保存的报表:
report.Load(@"..\..\..\Report.frx");
为带有对话框的“导出为 PDF”按钮添加点击处理程序:
private void btnExportWithDialog_Click(object sender, EventArgs e)
{
// create report instance
Report report = new Report();
// load the existing report
report.Load(@"..\..\..\Report.frx");
// register the dataset
report.RegisterData(_fDataSet);
// run the report
report.Prepare();
// create export instance
PDFExport export = new PDFExport();
export.Export(report);
// free resources used by report
report.Dispose();
}
运行项目并单击“使用对话框导出为 PDF”按钮:
将打开一个包含 PDF 导出设置的对话框。选择“导出后打开”并单击“确定”。保存到名为“Report”的 PDF 项目文件夹。导出完成后,PDF文件会自动打开:
因此,我们得到了一个从数据集构建的简单报告/PDF 文档。
我们还要检查所谓的没有对话框的“静默”PDF 导出选项。为“静默导出”按钮添加点击处理程序:
private void btnSilentExport_Click(object sender, EventArgs e)
{
// create report instance
Report report = new Report();
// load the existing report
report.Load(@"..\..\..\Report.frx");
// register the dataset
report.RegisterData(_fDataSet);
// run the report
report.Prepare();
// run the report
PDFExport export = new PDFExport();
// opening after export
export.OpenAfterExport = true;
// export the report
report.Export(export, "Result.pdf");
// free resources used by report
report.Dispose();
}
运行项目并单击“静默导出”按钮。它将立即导出并打开一个名为“结果”的 PDF 文件,它位于正在运行的项目的 exe 旁边:
在本文中,我们回顾了JetBrains Rider (C#) + .NET Core + WinForms + FastReport .NET + Windows 11的拉力,并收到了从数据集构建的 PDF 报告。当然,我们确保无需 Microsoft Visual Studio 即可轻松使用 .NET 平台。
关于“使用FastReport .NET 从 JetBrains Rider 中创建PDF报告”的教程就到这里了,点击查看更多FastReport .Net使用教程。
FastReport技术QQ群:536197826 欢迎进群一起讨论
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
Unity 是一款功能极其丰富的游戏引擎,允许开发人员将各种媒体集成到他们的项目中。但是,它缺少最令人兴奋的功能之一 - 将 Web 内容(例如 HTML、CSS 和 JavaScript)直接渲染到 3D 场景中的纹理上的能力。在本文中,我们将介绍如何使用 DotNetBrowser 在 Unity3D 中将 Web 内容渲染为纹理。
DevExpress v24.2帮助文档正式发布上线了,请按版本按需下载~
本教程将向您展示如何用MyEclipse构建一个Web项目,欢迎下载最新版IDE体验!
在处理电子表格时,尤其是在专业和数据导向型环境中,正确设置 Excel 单元格内的数字格式至关重要。本文将介绍如何使用 Spire.XLS for Java 设置 Excel 单元格的数字格式,帮助轻松创建精美且结构清晰的电子表格。
一款全功能的Windows Forms、ASP.NET和MVC报表分析解决方案。
FastReport VCL用于快速高效地生成报表的附加组件
FastReport.MonoFastReport.Mono 是一款为Mono Framework设计的功能全面的报表生成工具。
FastReport Online Designer一个跨平台的可视化Web报表设计器
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢