I have a class which derived from wx.frame and need to attach it to wx.wizard as a page
is that possible and if yes how can i do that :
for example i have
frame=myDrevidedFrame(..)
where myDervidedFrame its base class wx.frame
how can i attach the frame object to wx.wizard ?
No I dont think you can do that. It wouldnt make any sense to put a
Frameas a child of aDialog(which is basically what a wx.wizard is).It shouldn’t be too hard to convert your derived frame class to a
PywizardPage,basically instead of extending the
wx.Frameextend thewx.wizard.PyWizardPage.If you haven’t already, download the docs_demos and have a look at the
wx.Wizarddemo for an example of proper usage, it should be enough to get started in the right direction.