彩票走势图

【Stimulsoft Reports.WinForms教程】使用全局保存和加载事件

翻译|使用教程|编辑:王香|2018-09-03 11:22:18.000|阅读 299 次

概述:本文主要讲解在Stimulsoft中如何使用全局保存和加载事件

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

相关链接:

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

此示例显示如何在代码中使用“Save”和“Load”事件,您可以在应用程序初始化时将事件监听器添加到StiOptions.Engine.GlobalEvents:

public Form1()
{
    InitializeComponent();
 
    StiOptions.Engine.GlobalEvents.SavingReportInDesigner +=
        new Stimulsoft.Report.Design.StiSavingObjectEventHandler(GlobalEvents_SavingReportInDesigner);
 
    StiOptions.Engine.GlobalEvents.LoadingReportInDesigner +=
        new Stimulsoft.Report.Design.StiLoadingObjectEventHandler(GlobalEvents_LoadingReportInDesigner);
}

然后指定加载报表时要执行的操作:

...
private void GlobalEvents_LoadingReportInDesigner(object sender, Stimulsoft.Report.Design.StiLoadingObjectEventArgs e)
{
    e.Processed = true;
 
    StiReport report = new StiReport();
    report.Load("..\\..\\Reports\\SimpleList.mrt");
    designerControl1.Report = report;
}
...

指定报表保存时要执行的操作:

...
private void GlobalEvents_SavingReportInDesigner(object sender, Stimulsoft.Report.Design.StiSavingObjectEventArgs e)
{
    if (designerControl1.Report == null) return;
    e.Processed = true;
 
    designerControl1.Report.Save("Report.mrt");
}


标签:报表报表控件StimulsoftWinForms

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP