AttributeError:' Ui_Form'对象没有属性" printHam_btn'

时间:2014-06-03 06:57:32

标签: python qt pyqt pyqt4 qtgui

我开始使用Qt 4.8.6学习QtDesigner(Python)并遵循本教程:

https://www.youtube.com/watch?v=GLqrzLIIW2E

但它有时会向我显示标题中的错误,有时会出现AttributeError:' Ui_Form'对象没有属性" printHam_btn'。有人可以告诉我我要做什么或修改我的代码。

谢谢!

我知道这个问题已经在这个论坛中发布了,但我无法了解我的情况。

CODE:

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 个答案:

答案 0 :(得分:2)

问题在于:

self.printHam_btn.clicked.connect(self.printHam)

您以不同方式调用QPushButton实例,因此您需要将此行更改为:

self.print_ham.clicked.connect(self.printHam)