Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
DesignV2WithWpf() on a report to open the WPF designer:var report = new StiReport();
report.Load(@"Reports\SimpleList.mrt");
report.DesignV2WithWpf();StiWpfDesigner.SavingReport to control how and where the template is stored:StiWpfDesigner.SavingReport += GlobalEvents_SaveReport;
private void GlobalEvents_SaveReport(object sender, StiSavingObjectEventArgs e)
{
if (e.EventSource == StiSaveEventSource.SaveAs)
{
e.Processed = false;
return;
}
var report = ((IStiDesignerBase)sender).Report;
// save the report where you need
}e.Processed tells the designer whether you handled the save yourself, which is how you redirect templates to a database or custom storage.