How to properly initialize a QWizard page?
问题 I am having problems with sending data from one QWizard page to the next. I'm using a variable my_name of QWizard object as a container. My approach is: whenever I change text of QLineEdit on Page1 , the variable my_name of my QWizard object changes. And whenever I click Next button on Page1 , Page2 is initialized using the method QWizard.initializePage(2) . But the QLabel object on Page2 is not update based on the my_name variable of QWizard object. Even though I have initialized the Page2