+ dialog, you can switch layout adaptation on globally with
+ wxDialog::EnableLayoutAdaptation() or per dialog with wxDialog::SetLayoutAdaptationMode().
+ For more about layout adaptation, see @ref overview_dialog_autoscrolling.
+
+ @beginEventEmissionTable{wxWizardEvent}
+ For some events, Veto() can be called to prevent the event from happening.
+ @event{EVT_WIZARD_PAGE_CHANGED(id, func)}
+ The page has just been changed (this event cannot be vetoed).
+ @event{EVT_WIZARD_PAGE_CHANGING(id, func)}
+ The page is being changed (this event can be vetoed).
+ @event{EVT_WIZARD_BEFORE_PAGE_CHANGED(id, func)}
+ Called after Next is clicked but before GetNext is called. Unlike EVT_WIZARD_CHANGING,
+ the handler for this function can change state that might affect the return value of
+ GetNext. This event can be vetoed.
+ @event{EVT_WIZARD_PAGE_SHOWN(id, func)}
+ The page was shown and laid out (this event cannot be vetoed).
+ @event{EVT_WIZARD_CANCEL(id, func)}
+ The user attempted to cancel the wizard (this event may also be vetoed).
+ @event{EVT_WIZARD_HELP(id, func)}
+ The wizard help button was pressed.
+ @event{EVT_WIZARD_FINISHED(id, func)}
+ The wizard finished button was pressed.
+ @endEventTable
+
+
+ @section wizard_extstyles Extended styles
+
+ Use the wxWindow::SetExtraStyle() function to set the following style.
+ You will need to use two-step construction (use the default constructor,
+ call SetExtraStyle(), then call Create).
+
+ @beginExtraStyleTable
+ @style{wxWIZARD_EX_HELPBUTTON}
+ Shows a Help button using wxID_HELP.
+ @endExtraStyleTable
+
+ See also wxDialog for other extended styles.