Hi,
How to disable the next button of a QWizardPage? I have tried
this->wizard()->button(QWizard::NextButton)->setDisable(true);
but it didn't work.
Hi,
How to disable the next button of a QWizardPage? I have tried
this->wizard()->button(QWizard::NextButton)->setDisable(true);
but it didn't work.
Take a look at QWizardPage::isComplete().
Hi, wysota
Thank you for reply. I just have reimplemented isCompleted(), and it works!
Hi Guys,
can you give me a hint on how to reimplement isComplete when I used the Qt Designer to create my WizardPages? Do I really need to create WizardPage classes for every page I used within the Designer just to enable/disabel the prev/next buttons?
Thanks in advance
Sönke
P.S.: This is the context - DMFCam
Yes for efficiency you need to create a class for every page
Bookmarks