In Wxpython, What Is The Standard Process Of Making An Application Slightly More Complex Than A Wizard?
I am attempting to create my first OS-level GUI using wxPython. I have the book wxPython in Action and have looked at the code demos. I have no experience with event-driven progr
Solution 1:
I don't have a good understanding of your application, but trying to force wxWizard to suit your needs sounds like a bad idea.
I suggest checking out the Demos available from the wxPython website. Go through each demo and I bet you'll find one that suits your needs.
I've personally never used wxWizard as I find it too cumbersome. Instead, I create a sequence of dialogs that do what I need.
Post a Comment for "In Wxpython, What Is The Standard Process Of Making An Application Slightly More Complex Than A Wizard?"