首页 > 其他 > 详细

PyQt 之 QT designer ui使用

时间:2018-01-23 13:33:01      阅读:298      评论:0      收藏:0      [点我收藏+]

使用 QT designer 做成的.UI文件,可以转化为py文件:

pyuic filename.ui -o filename.py

 

直接引入ui文件使用

import sys
from PyQt4 import QtCore, QtGui, uic

qtCreatorFile = "filename.ui"   #插入文件(可指定路径)

Ui_MainWindow, QtBaseClass = uic.loadUiType(qtCreatorFile)

class MyApp(QtGui.QMainWindow, Ui_MainWindow): 
    def __init__(self):
        QtGui.QMainWindow.__init__(self)
        Ui_MainWindow.__init__(self)
        self.setupUi(self)
    
if __name__ == "__main__":
    app = QtGui.QApplication(sys.argv)
    window = MyApp()
    window.show()
    sys.exit(app.exec_())

 

PyQt5里 QtGui 变成了 QtWidgets

换一下就可以用

 

from PyQt5 import QtWidgets  

 

PyQt 之 QT designer ui使用

原文:https://www.cnblogs.com/wdxseee/p/8335216.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!