QWizard vs a QDialog with stack control?
-
Is there any advantage to doing a wizard type dialog using a QWizard class and multiple QWizardPage's, vs just creating a dialog in the designer with a stack control and adding your own buttons to go forward/back?
The stack control route seems easier to manage, so I'm wondering if there is any reason for me to bother with a QWizard.
-
Hi,
Handling of the stored values of each page, non linear progression integrated, styling already done to match your target platform.
-
@SGaist said in QWizard vs a QDialog with stack control?:
Hi,
Handling of the stored values of each page, non linear progression integrated, styling already done to match your target platform.
Follow up question... Is there an easy way to create the wizard in the designer? Or do you have to do it all via code?