How to create WizardDialog with XRCed

Hi friends,

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?

Thanks in advance!

Basil Shubin wrote:

Hi friends,

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!

Robin Dunn wrote:

Basil Shubin wrote:

Hi friends,

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?

Thanks for you help, Robin!

Basil Shubin wrote:

Robin Dunn wrote:

Basil Shubin wrote:

Hi friends,

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!

Basil Shubin wrote:

Basil Shubin wrote:

Robin Dunn wrote:

Basil Shubin wrote:

Hi friends,

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!