错误:AttributeError: ‘Ui_Form‘ object has no attribute ‘pushButton_01‘

在一级界面创建二级界面对象,去操作二级界面组件时,有组件对象却提示:  File "F:\python\terminal\transducer_Window_Operation.py", line 87, in __init__
    self.combobox.pushButton_01.clicked.connect(self.on_PushButton_test_01)
AttributeError: 'Ui_Form' object has no attribute 'pushButton_01'

以上是在连接时显示没有这个组件对象

class transducer_Window_Operation(QMainWindow,Ui_MainWindow):
    closed = Signal()
    def __init__(self):
        super(transducer_Window_Operation,self).__init__()
        self.setupUi(self) # 一级界面设置初始化UI
        self.combobox = Ui_Form()
        print(self.combobox)
        self.widget = QtWidgets.QWidget()

        self.combobox.setupUi(self.widget) # 二级界面初始化UI

解决办法:self.combobox.setupUi(self.widget) # 二级界面初始化UI

这个界面初始化要放在调用之前,我是因为放在函数中,一直报错。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
As an AI language model, I cannot see your code, so I can only provide a general solution. This error occurs when you try to access an attribute called "retranslateUi" that does not exist in the Ui_MainWindow object. This attribute is typically generated by the PyQt5 or PySide2 UI compiler when you create a new UI file in Qt Designer and convert it to Python code. To fix the error, you need to make sure that your UI file has been properly converted to Python code and that the "retranslateUi" method is defined in the class that inherits from Ui_MainWindow. Here are some steps you can take: 1. Make sure that you have converted your UI file to Python code using the PyQt5 or PySide2 UI compiler. You can do this by running the following command in your terminal or command prompt: ``` pyuic5 <ui_file_name>.ui -o <python_file_name>.py ``` Replace <ui_file_name> with the name of your UI file (including the .ui extension) and <python_file_name> with the name of the Python file you want to generate (including the .py extension). 2. Open the Python file that was generated by the UI compiler and look for the class that inherits from Ui_MainWindow. This class should have a method called "retranslateUi" that is used to translate the text of your UI elements to different languages. 3. If the "retranslateUi" method is missing, you can add it manually to your class definition. Here's an example of what the method should look like: ``` def retranslateUi(self, MainWindow): _translate = QtCore.QCoreApplication.translate MainWindow.setWindowTitle(_translate("MainWindow", "My Application")) self.pushButton.setText(_translate("MainWindow", "Click Me!")) # Add more translations for your UI elements here ``` Make sure to replace "MainWindow" with the name of your main window object, and add translations for all of your UI elements that need to be translated. 4. Save your Python file and run your application again. The "retranslateUi" method should now be called correctly and your UI elements should be translated properly. I hope this helps! Let me know if you have any other questions.

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值