1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using FastReport.Design;
- namespace FastReport.Wizards
- {
- /// <summary>
- /// Represents the "New Dialog" wizard.
- /// </summary>
- public class NewDialogWizard : WizardBase
- {
- /// <inheritdoc/>
- public override bool Run(Designer designer)
- {
- if (designer.Restrictions.DontCreatePage)
- return false;
- designer.cmdNewDialog.Invoke();
- return true;
- }
- }
- }
|