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 and 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
- Set Modal to
false
. - Add the Wizard to a containing view with Add(View?).
wizard.CurrentStep = wizard.GetNextStep();
public bool Modal { get; set; }