WizardControl
Object of the WizardControl class is a wizard control used for implement something step by step in dialog box. The WizardControl class provides methods programming to add/delete steps.
Control.h
| Name | Brief | Example |
|---|---|---|
| AddStep | adds a step to the control. Added item will be visible and enabled, Must be attached. | |
| CreateControl | creates a control using the holder attributes, destroys the holder window | |
| EnableCombo | ||
| GetActiveStep | Gets the active step of the control. | |
| GetComboSelection | Provides access to the combo selection of a particular step | |
| GetNumSteps | Gets the number of steps in the wizard (excluding the end). | |
| InsertStep | Inserts a step at the specified index of the control. If nIndex < 0 , adds it to the end. Inserted item will be visible and enabled, Must be attached. | |
| IsComboVisible | Determines if a particular combo in the control is visible. | |
| IsStepVisible | Determines if a particular step in the control is visible. | |
| SetActiveStep | Sets a specific step to be active in a control. | |
| SetComboSelection | Provides access to the combo selection of a particular step identified by nIndex. When nIndex < 0, active is assumed | |
| SetEventHandler | ||
| ShowCombos | ||
| ShowCombo | Shows[Hides] a combo in a step | |
| ShowStep | Shows[Hides] a step in the control | |
| UpdateStep | Update a specific steps label and combo strings; | |
| WizardControl | default constructor |