h1(#wxwizardevent). Wx::WizardEvent WizardEvent class represents an event generated by the "wizard":wizard.html: this event is first sent to the page itself and, if not processed there, goes up the window hierarchy as usual. h2. Derived from "NotifyEvent":notifyevent.html "CommandEvent":commandevent.html "Event":event.html "Object":object.html h2. Event table macros To process input from a wizard dialog, use these event handler macros to direct input to member functions that take a WizardEvent argument. |*evt_wizard_page_changed(id) { | event | ... }*|The page has been justchanged (this event can not be vetoed).| |*evt_wizard_page_changing(id) { | event | ... }*|The page is beingchanged (this event can be vetoed).| |*evt_wizard_cancel(id) { | event | ... }*|The user attempted to cancelthe wizard (this event may also be vetoed).| |*evt_wizard_help(id) { | event | ... }*|The wizard help button was pressed.| |*evt_wizard_finished(id) { | event | ... }*|The wizard finished button was pressed.| h2. See also "Wizard":wizard.html, "Wizard sample":samplewizard.html