Using the Designer with Multiple Document Interface (MDI)
Наши примеры проектов и шаблоны отчётов помогут Вам разобраться в основах работы с нашими продуктами.Этот пример является устаревшим, посмотрите множество других обновлённых примеров в данной категории.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);
}