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.
private void ButtonShow_Click(object sender, RoutedEventArgs e)
{
var report = new StiReport();
report.Load(@"Reports\Variables.mrt");
// Required to prepare the in compilation mode
report.Compile();
...
...
// Set Variables
report["Name"] = TextBoxName.Text;
report["Surname"] = TextBoxSurname.Text;
report["Email"] = TextBoxEmail.Text;
report["Address"] = TextBoxAddress.Text;
report["Sex"] = RadioButtonMale.IsChecked.GetValueOrDefault();
...
...
report.ShowWithWpf();
}