我想禁用 QWizard 页面上的“返回”按钮。
My Class 继承自 QWizard 和生成的文件。它看起来像这样:
从 PyQt4 导入 QtGui
class WizardClass(QtGui.QWizard, file.Ui_Wizard):
def __init__(self, model):
# Call super constructors
QtGui.QWizard.__init__(self)
self.setupUi(self)
self.model = model
在这里http://doc.qt.digia.com/3.3/qwizard.html#backButton我找到了方法setBackEnabled()
。
我self.setBackEnabled(page1, False)
无法调用此方法。它说:
"AttributeError: 'WizardClass' object has no attribute 'setBackEnabled'"
难道我做错了什么?
或者这种方法在 Python 中不可用?