Property Modal
Modal
Determines whether the Wizard is displayed as modal pop-up or not.
The default is true
. The Wizard will be shown with a frame with Title and will behave like
any Toplevel window.
If set to false
the Wizard will have no frame and will behave like any embedded View.
To use Wizard as an embedded View
If a non-Modal Wizard is added to the application after Run(Func<Exception, bool>) has been called the first step must be explicitly set by setting CurrentStep to GetNextStep():
wizard.CurrentStep = wizard.GetNextStep();
public bool Modal { get; set; }