David LePage wrote:
Hi there,
I'm new to wx.python and GUI programming in general and I have a question I can't seem to find an answer for. I'm trying to build a basic wizard based UI dialogue to walk a user through a couple of configuration details. I am able to use code examples and build a simple 3 page wizard by subclassing wx.wizard.PyWizardPage without a problem, but I want to add an "About" button on the same lower panel where the next, back and finish buttons are. I know I could add something to the panel above it - and even disable the next, back or finish buttons, but I couldnt find a way to add a new button.
Is that possible?
Maybe, but not easily. You would have to do a little digging in the wizard's child windows to find the existing buttons, (they use stock IDs so you should be able to find them by ID) and then add your button to the same parent and the same sizer.
ยทยทยท
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!