Recipe 5-1. Creating a Simple Wizard
Problem
Sometimes you will find that you have a need for your users to walk through setting up your application or installing a plug-in. The standard interface to do these sorts
of things is called a wizard!
Note
The code in this recipe was adapted from the wxPython Demo application
Solution
Figure 5-1
A simple wizard example
When you need to use a wizard
in wxPython, you’ll want to import it in a special way. Instead of just importing wx, you will have to do the following: ...