AttributeError:'Ui_Form'对象没有'printHam_btn'属性
我开始学习QtDesigner(Python),使用的是Qt 4.8.6,并且我在跟着这个教程:
https://www.youtube.com/watch?v=GLqrzLIIW2E
但是有时候它会给我报错,有时候是标题错误,有时候是AttributeError: 'Ui_Form'对象没有属性'printHam_btn'。有人能告诉我该怎么做或者修复我的代码吗?
谢谢!
我知道这个问题在论坛上已经有人提过,但我找不到适合我情况的解决办法。
代码:
from PyQt4 import QtCore, QtGui
import sys
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s
try:
_encoding = QtGui.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig)
class Ui_Form(QtGui.QWidget):
def __init__(self):
QtGui.QWidget.__init__(self)
self.setupUi(self)
def setupUi(self, Form):
Form.setObjectName(_fromUtf8("Form"))
Form.resize(400, 300)
self.verticalLayout_2 = QtGui.QVBoxLayout(Form)
self.verticalLayout_2.setObjectName(_fromUtf8("verticalLayout_2"))
self.verticalLayout = QtGui.QVBoxLayout()
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
self.print_ham = QtGui.QPushButton(Form)
self.print_ham.setObjectName(_fromUtf8("print_ham"))
self.verticalLayout.addWidget(self.print_ham)
self.verticalLayout_2.addLayout(self.verticalLayout)
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
def retranslateUi(self, Form):
Form.setWindowTitle(_translate("Form", "Super ham", None))
self.print_ham.setText(_translate("Form", "print ham", None))
self.printHam_btn.clicked.connect(self.printHam)
def printHam(self):
print('Ham!')
if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
main_window = Ui_Form()
main_window.show()
sys.exit(app.exec_())
1 个回答
2
问题出在这里:
self.printHam_btn.clicked.connect(self.printHam)
你对你的QPushButton实例的调用方式不一样,所以你需要把这一行改成:
self.print_ham.clicked.connect(self.printHam)