This class is used to fill the WizardManager's stack. It has all the properties needed by the WizardManager to display a wizard with next and back actions.
Inheritance: PropertyChangedBase, IWizardNavigable
Beispiel #1
0
 private WizardPage( WizardManager wizardManager, WizardPage next, bool isLastStep, string title = "" )
 {
     WizardManager = wizardManager;
     IsLastStep = isLastStep;
     Next = next;
     Title = title;
 }
Beispiel #2
0
 /// <summary>
 /// This constructor specifies a next wizard.
 /// Its "IsLastStep" Property is autmatically set to false.
 /// </summary>
 /// <param name="wizardManager">The WizardManager</param>
 /// <param name="next">The next WizardPage</param>
 /// <param name="title">(optional) title of the page</param>
 public WizardPage( WizardManager wizardManager, WizardPage next, string title = "" )
     : this(wizardManager, next, false)
 {
 }