彩票走势图

Stimulsoft Reports.WPF教程:从代码导出报表

翻译|使用教程|编辑:王香|2018-09-20 09:39:23.000|阅读 432 次

概述:本文主要介绍Stimulsoft报表中从代码导出报表。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

【下载Stimulsoft Reports.WPF最新版本】

此示例项目演示了如何从代码中将报表导出为必要的格式。该示例表示导出为常用格式,如果需要,可以在同一场景中使用任何其他导出。首先,加载要导出的报表,然后使用WPF引擎进行渲染:

private void buttonExport_Click(object sender, RoutedEventArgs e)
{
    StiReport report = new StiReport();
    report.RegData(dataSet1);
 
    report.Load("..\\" + ((ListBoxItem)lbReports.SelectedItem).Content as string + ".mrt");
    report.RenderWithWpf(false);
...

然后,选择要将报表导出到的文件格式:

...
    string file = ((ListBoxItem)lbReports.SelectedItem).Content as string + ".";
 
    if (rbPdf.IsChecked.GetValueOrDefault())
    {
        file += "pdf";
        report.ExportDocument(StiExportFormat.Pdf, file);
        System.Diagnostics.Process.Start(file);
    }
    else if (rbHtml.IsChecked.GetValueOrDefault())
    {
        file += "html";
        report.ExportDocument(StiExportFormat.HtmlTable, file);
        System.Diagnostics.Process.Start(file);
    }
    else if (rbXls.IsChecked.GetValueOrDefault())
    {
        file += "xls";
        report.ExportDocument(StiExportFormat.Excel, file);
        System.Diagnostics.Process.Start(file);
    }
    else if (rbTxt.IsChecked.GetValueOrDefault())
    {
        file += "txt";
        report.ExportDocument(StiExportFormat.Text, file);
        System.Diagnostics.Process.Start(file);
    }
    else if (rbRtf.IsChecked.GetValueOrDefault())
    {
        file += "rtf";
        report.ExportDocument(StiExportFormat.RtfTable, file);
        System.Diagnostics.Process.Start(file);
    }
}

示例代码的结果如下图所示:

Stimulsoft

下载示例

购买Stimulsoft正版授权,请点击“”哟!

FastReport2018.4


标签:报表解决方案报表报表控件WPF报表设计Stimulsoftstimulsoft reports.wpf

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP