X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ab5b7b61265d33d5b4c9d8a74de8e6badd86bc25..e7445ff8ee26e39fab1e35455e1bef954bdf636f:/wxPython/demo/Wizard.py diff --git a/wxPython/demo/Wizard.py b/wxPython/demo/Wizard.py index 4ea5dbcc42..b06e859f93 100644 --- a/wxPython/demo/Wizard.py +++ b/wxPython/demo/Wizard.py @@ -136,6 +136,7 @@ class TestPanel(wx.Panel): wx.MessageBox("Cancelling on the first page has been prevented.", "Sorry") evt.Veto() + def OnWizFinished(self, evt): self.log.write("OnWizFinished\n") @@ -162,6 +163,7 @@ wxWizardPageSimple class can easily be used for the pages.""")) wiz.WizardPageSimple_Chain(page2, page3) wiz.WizardPageSimple_Chain(page3, page4) + wizard.GetPageAreaSizer().Add(page1) if wizard.RunWizard(page1): wx.MessageBox("Wizard completed successfully", "That's all folks!") else: @@ -202,6 +204,7 @@ of the pages and also which bitmap is shown. page5.SetPrev(page4) + wizard.GetPageAreaSizer().Add(page1) if wizard.RunWizard(page1): wx.MessageBox("Wizard completed successfully", "That's all folks!") else: