/// <summary> /// Initializes a new instance of the <see cref="WizardPage" /> class. /// </summary> /// <param name="title"> The title of the current wizard page. </param> /// <param name="description"> The description of the current wizard page. </param> /// <param name="wizard"> /// The <see cref="Wizard" /> instance which contains the current wizard page. /// </param> /// <param name="type"> The type of the wizard page. </param> protected WizardPage(string title, string description, Wizard wizard, WizardPageType type) : this(title, description, wizard, null, type) { }
/// <summary> /// Initializes a new instance of the <see cref="WizardPage" /> class. /// </summary> /// <param name="title"> The title of the current wizard page. </param> /// <param name="description"> The description of the current wizard page. </param> /// <param name="wizard"> /// The <see cref="Wizard" /> instance which contains the current wizard page. /// </param> /// <param name="model"> The data model of the current wizard page. </param> /// <param name="type"> The type of the current wizard page. </param> protected WizardPage(string title, string description, Wizard wizard, IWizardModel model, WizardPageType type) : base(title, description, wizard, model, type) { }
/// <summary> /// Initializes a new instance of the <see cref="WizardPage" /> class. /// </summary> /// <param name="title"> The title of the current wizard page. </param> /// <param name="description"> The description of the current wizard page. </param> /// <param name="wizard"> /// The <see cref="Wizard" /> instance which contains the current wizard page. /// </param> /// <param name="model"> The data model of the current wizard page. </param> protected WizardPage(string title, string description, Wizard wizard, IWizardModel model = null) : this(title, description, wizard, model, WizardPageType.Standard) { }