using System.Windows.Forms; using FastReport.Design; using FastReport.Forms; namespace FastReport.Wizards { /// /// Represents the "Control identification sign" wizard. /// public class ControlIdentificationSignWizard : WizardBase { /// public override bool Run(Designer designer) { if (!designer.CreateEmptyReport()) return false; using (CISWizardForm form = new CISWizardForm()) { form.InitWizard(designer.Report); bool result = form.ShowDialog() == DialogResult.OK; return result; } } /// /// Initializes a new instance of the class with the default settings. /// public ControlIdentificationSignWizard() { } } }