码迷,mamicode.com
首页 > 其他好文 > 详细

PyQt 之 QT designer ui使用

时间:2018-01-23 14:22:41      阅读:542      评论:0      收藏:0      [点我收藏+]

标签:set   .sh   pytho   使用   span   UI   pyqt4   color   setup   

使用 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使用

标签:set   .sh   pytho   使用   span   UI   pyqt4   color   setup   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!