wxWizardPage
Creation Parameters
- parent
- bitmap [=wxNullBitmap]
- resource [=NULL]
A wxWizardPage is actually a panel that will be displayed in the
wxWizard. You must call
set_next_wizard_page() and
set_prev_wizard_page() for each page to set the next and previous
pages. The first and last pages will have previous and next pages of 0, respectively.
Functions/Procedures
Supertopics
wxWizardPage
Category:
wxWizardPage
This makes the next button on page go to the page specified by
preview.
-- Ex.
-- P1 = First page
-- P2 = Second page
set_next_wizard page ( p1, p2 )
would make it so that clicking the next button on p1 would make the
wizard show p2.
wxWizardPage
Category:
wxWizardPage
This makes the prev button on page go to the page specified by preview.
-- Ex.
-- P1 = First page
-- P2 = Second page
set_prev_wizard page ( p2, p1 )
would make it so that clicking the prev button on p2 would make
the wizard show p1.