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.
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 )
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 )