Is there some way to create WizardDialog with XRCed? If yes, how to? If no, what is solution, shall I create it by hand without XRCed? Also if this ability doesn't exist maybe it is a good candidate for including into new XRCed?
Is there some way to create WizardDialog with XRCed? If yes, how to? If no, what is solution, shall I create it by hand without XRCed? Also if this ability doesn't exist maybe it is a good candidate for including into new XRCed?
There isn't any buttons for it on the tool palette, but you can add a wizard to the tree via the popup menu on the component tree. You can then add some WizardPageSimple objects to it via the menu.
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!
Is there some way to create WizardDialog with XRCed? If yes, how to? If no, what is solution, shall I create it by hand without XRCed? Also if this ability doesn't exist maybe it is a good candidate for including into new XRCed?
There isn't any buttons for it on the tool palette, but you can add a wizard to the tree via the popup menu on the component tree. You can then add some WizardPageSimple objects to it via the menu.
And how I can access it from the code? Wich XmlResource method I need use, the LoadPanel won't work with wxWizard. What shall I do?
Is there some way to create WizardDialog with XRCed? If yes, how to? If no, what is solution, shall I create it by hand without XRCed? Also if this ability doesn't exist maybe it is a good candidate for including into new XRCed?
There isn't any buttons for it on the tool palette, but you can add a wizard to the tree via the popup menu on the component tree. You can then add some WizardPageSimple objects to it via the menu.
And how I can access it from the code? Wich XmlResource method I need use, the LoadPanel won't work with wxWizard. What shall I do?
Ops! I should use the LoadObject method, thanks to all!
Is there some way to create WizardDialog with XRCed? If yes, how to? If no, what is solution, shall I create it by hand without XRCed? Also if this ability doesn't exist maybe it is a good candidate for including into new XRCed?
There isn't any buttons for it on the tool palette, but you can add a wizard to the tree via the popup menu on the component tree. You can then add some WizardPageSimple objects to it via the menu.
And how I can access it from the code? Wich XmlResource method I need use, the LoadPanel won't work with wxWizard. What shall I do?
Ops! I should use the LoadObject method, thanks to all!
Since wxWizard derives from wxDialog then LoadDialog should work too.
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!