解决AttributeError: 'Ui_MainWindow' object has no attribute 'show'报错
Posted 改改哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决AttributeError: 'Ui_MainWindow' object has no attribute 'show'报错相关的知识,希望对你有一定的参考价值。
1、首先使用pyqt designer来设计ui界面,将其保存为"***.ui"文件,
然后进入到pyqt所在的文件目录中,执行cmd中命令,即在当前目录中可以生成相应的**.py文件。
2、生成之后的Python代码,我们需要对其继承的object类进行修改为QtGui.QMainWindow。添加一个__init__方法,在__init__里,先调用了父类QMainWindow的构造方法,然后调用了自动生成的两个方法。(注意,传的参数是self,因为他已经是QMainWindow了。)
class Ui_MainWindow(QtGui.QMainWindow): def __init__(self): super(Ui_MainWindow,self).__init__() self.setupUi(self) self.retranslateUi(self)
如果直接对生成的test.py编译运行,则会报错:
AttributeError: \'Ui_MainWindow\' object has no attribute \'show\'。
以上是关于解决AttributeError: 'Ui_MainWindow' object has no attribute 'show'报错的主要内容,如果未能解决你的问题,请参考以下文章
python脚本AttributeError: module 'xxxx' has no attribute 'xxxxx'错误解决办法
解决:AttributeError: module 'requests' has no attribute 'get'”
解决编码问题:AttributeError: 'str' object has no attribute 'decode'
解决AttributeError:模块'pandas'没有使用command-prompt或pycharm属性'core'
unittest中报错:AttributeError: 'TestLogin' object has no attribute 'driver'解决方法