Using the Designer with Multiple Document Interface (MDI)
Unsere Beispiele der Projekte und Berichtsvorlagen helfen Ihnen, die Grundlagen der Arbeit mit unserer Software zu erlernen.Dieses Beispiel ist veraltet, checken Sie viele anderen aktualisierten Beispiele in dieser Kategorie aus.This sample project shows how to use the report designer with Multiple Document Interface (MDI). This can be useful if you want to display the designer for your application, embed it in the interface. For this, it is enough to specify the parent form when calling the Designer:
private void menuItem2_Click(object sender, System.EventArgs e)
{
StiReport report = new StiReport();
report.Design(this);
}