PyQt5 将.ui文件转为.py文件并用另一个.py调用

这篇具有很好参考价值的文章主要介绍了PyQt5 将.ui文件转为.py文件并用另一个.py调用。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

一、.ui转.py

1.使用终端进入ui文件所在的文件夹

值得注意的是,Anaconda Prompt不能直接cd进其它盘

pyqt5按钮运行py文件,python,Powered by 金山文档

需要在根目录下进行切换盘符操作,使用 cd ..切进上一级目录,直到进入根目录:

pyqt5按钮运行py文件,python,Powered by 金山文档

这样就可以了

2.输入以下命令:

pyuic5 -o UI.py UI.ui
pyqt5按钮运行py文件,python,Powered by 金山文档

代码说明

生成的py文件:

# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'UI.ui'
#
# Created by: PyQt5 UI code generator 5.15.7
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again.  Do not edit this file unless you know what you are doing.


from PyQt5 import QtCore, QtGui, QtWidgets


class Ui_Gaze_Estimation(object):
    def setupUi(self, Gaze_Estimation):
        Gaze_Estimation.setObjectName("Gaze_Estimation")
        Gaze_Estimation.resize(1319, 862)
        self.verticalLayoutWidget = QtWidgets.QWidget(Gaze_Estimation)
        self.verticalLayoutWidget.setGeometry(QtCore.QRect(10, 30, 391, 321))
        self.verticalLayoutWidget.setObjectName("verticalLayoutWidget")
        self.verticalLayout_setting = QtWidgets.QVBoxLayout(self.verticalLayoutWidget)
        self.verticalLayout_setting.setContentsMargins(0, 0, 0, 0)
        self.verticalLayout_setting.setObjectName("verticalLayout_setting")
        self.horizontalLayout_predictor = QtWidgets.QHBoxLayout()
        self.horizontalLayout_predictor.setObjectName("horizontalLayout_predictor")
        self.label_predictor = QtWidgets.QLabel(self.verticalLayoutWidget)
        self.label_predictor.setTextFormat(QtCore.Qt.AutoText)
        self.label_predictor.setObjectName("label_predictor")
        self.horizontalLayout_predictor.addWidget(self.label_predictor)
        self.lineEdit_predictor = QtWidgets.QLineEdit(self.verticalLayoutWidget)
        self.lineEdit_predictor.setText("")
        self.lineEdit_predictor.setEchoMode(QtWidgets.QLineEdit.Normal)
        self.lineEdit_predictor.setObjectName("lineEdit_predictor")
        self.horizontalLayout_predictor.addWidget(self.lineEdit_predictor)
        self.pushButton_predictor = QtWidgets.QPushButton(self.verticalLayoutWidget)
        self.pushButton_predictor.setAutoDefault(False)
        self.pushButton_predictor.setDefault(False)
        self.pushButton_predictor.setObjectName("pushButton_predictor")
        self.horizontalLayout_predictor.addWidget(self.pushButton_predictor)
        self.verticalLayout_setting.addLayout(self.horizontalLayout_predictor)
        self.horizontalLayout_gaze_model = QtWidgets.QHBoxLayout()
        self.horizontalLayout_gaze_model.setObjectName("horizontalLayout_gaze_model")
        self.label_gaze_model = QtWidgets.QLabel(self.verticalLayoutWidget)
        self.label_gaze_model.setTextFormat(QtCore.Qt.AutoText)
        self.label_gaze_model.setObjectName("label_gaze_model")
        self.horizontalLayout_gaze_model.addWidget(self.label_gaze_model)
        self.lineEdit_gaze_model = QtWidgets.QLineEdit(self.verticalLayoutWidget)
        self.lineEdit_gaze_model.setText("")
        self.lineEdit_gaze_model.setEchoMode(QtWidgets.QLineEdit.Normal)
        self.lineEdit_gaze_model.setObjectName("lineEdit_gaze_model")
        self.horizontalLayout_gaze_model.addWidget(self.lineEdit_gaze_model)
        self.pushButton_gaze_model = QtWidgets.QPushButton(self.verticalLayoutWidget)
        self.pushButton_gaze_model.setAutoDefault(False)
        self.pushButton_gaze_model.setDefault(False)
        self.pushButton_gaze_model.setObjectName("pushButton_gaze_model")
        self.horizontalLayout_gaze_model.addWidget(self.pushButton_gaze_model)
        self.verticalLayout_setting.addLayout(self.horizontalLayout_gaze_model)
        self.horizontalLayout_pnet_model = QtWidgets.QHBoxLayout()
        self.horizontalLayout_pnet_model.setObjectName("horizontalLayout_pnet_model")
        self.label_pnet_model = QtWidgets.QLabel(self.verticalLayoutWidget)
        self.label_pnet_model.setTextFormat(QtCore.Qt.AutoText)
        self.label_pnet_model.setObjectName("label_pnet_model")
        self.horizontalLayout_pnet_model.addWidget(self.label_pnet_model)
        self.lineEdit_pnet_model = QtWidgets.QLineEdit(self.verticalLayoutWidget)
        self.lineEdit_pnet_model.setText("")
        self.lineEdit_pnet_model.setEchoMode(QtWidgets.QLineEdit.Normal)
        self.lineEdit_pnet_model.setObjectName("lineEdit_pnet_model")
        self.horizontalLayout_pnet_model.addWidget(self.lineEdit_pnet_model)
        self.pushButton_pnet_model = QtWidgets.QPushButton(self.verticalLayoutWidget)
        self.pushButton_pnet_model.setAutoDefault(False)
        self.pushButton_pnet_model.setDefault(False)
        self.pushButton_pnet_model.setObjectName("pushButton_pnet_model")
        self.horizontalLayout_pnet_model.addWidget(self.pushButton_pnet_model)
        self.verticalLayout_setting.addLayout(self.horizontalLayout_pnet_model)
        self.horizontalLayout_rnet_model = QtWidgets.QHBoxLayout()
        self.horizontalLayout_rnet_model.setObjectName("horizontalLayout_rnet_model")
        self.label_rnet_model = QtWidgets.QLabel(self.verticalLayoutWidget)
        self.label_rnet_model.setTextFormat(QtCore.Qt.AutoText)
        self.label_rnet_model.setObjectName("label_rnet_model")
        self.horizontalLayout_rnet_model.addWidget(self.label_rnet_model)
        self.lineEdit_rnet_model = QtWidgets.QLineEdit(self.verticalLayoutWidget)
        self.lineEdit_rnet_model.setText("")
        self.lineEdit_rnet_model.setEchoMode(QtWidgets.QLineEdit.Normal)
        self.lineEdit_rnet_model.setObjectName("lineEdit_rnet_model")
        self.horizontalLayout_rnet_model.addWidget(self.lineEdit_rnet_model)
        self.pushButton_rnet_model = QtWidgets.QPushButton(self.verticalLayoutWidget)
        self.pushButton_rnet_model.setAutoDefault(False)
        self.pushButton_rnet_model.setDefault(False)
        self.pushButton_rnet_model.setObjectName("pushButton_rnet_model")
        self.horizontalLayout_rnet_model.addWidget(self.pushButton_rnet_model)
        self.verticalLayout_setting.addLayout(self.horizontalLayout_rnet_model)
        self.horizontalLayout_onet_model = QtWidgets.QHBoxLayout()
        self.horizontalLayout_onet_model.setObjectName("horizontalLayout_onet_model")
        self.label_onet_mobel = QtWidgets.QLabel(self.verticalLayoutWidget)
        self.label_onet_mobel.setTextFormat(QtCore.Qt.AutoText)
        self.label_onet_mobel.setObjectName("label_onet_mobel")
        self.horizontalLayout_onet_model.addWidget(self.label_onet_mobel)
        self.lineEdit_onet_model = QtWidgets.QLineEdit(self.verticalLayoutWidget)
        self.lineEdit_onet_model.setText("")
        self.lineEdit_onet_model.setEchoMode(QtWidgets.QLineEdit.Normal)
        self.lineEdit_onet_model.setObjectName("lineEdit_onet_model")
        self.horizontalLayout_onet_model.addWidget(self.lineEdit_onet_model)
        self.pushButton_onet_model = QtWidgets.QPushButton(self.verticalLayoutWidget)
        self.pushButton_onet_model.setAutoDefault(False)
        self.pushButton_onet_model.setDefault(False)
        self.pushButton_onet_model.setObjectName("pushButton_onet_model")
        self.horizontalLayout_onet_model.addWidget(self.pushButton_onet_model)
        self.verticalLayout_setting.addLayout(self.horizontalLayout_onet_model)
        self.horizontalLayout_device = QtWidgets.QHBoxLayout()
        self.horizontalLayout_device.setObjectName("horizontalLayout_device")
        self.label_device = QtWidgets.QLabel(self.verticalLayoutWidget)
        self.label_device.setTextFormat(QtCore.Qt.AutoText)
        self.label_device.setObjectName("label_device")
        self.horizontalLayout_device.addWidget(self.label_device)
        self.lineEdit_device = QtWidgets.QLineEdit(self.verticalLayoutWidget)
        self.lineEdit_device.setText("")
        self.lineEdit_device.setEchoMode(QtWidgets.QLineEdit.Normal)
        self.lineEdit_device.setObjectName("lineEdit_device")
        self.horizontalLayout_device.addWidget(self.lineEdit_device)
        self.pushButton_device = QtWidgets.QPushButton(self.verticalLayoutWidget)
        self.pushButton_device.setAutoDefault(False)
        self.pushButton_device.setDefault(False)
        self.pushButton_device.setObjectName("pushButton_device")
        self.horizontalLayout_device.addWidget(self.pushButton_device)
        self.verticalLayout_setting.addLayout(self.horizontalLayout_device)

        self.retranslateUi(Gaze_Estimation)
        QtCore.QMetaObject.connectSlotsByName(Gaze_Estimation)

    def retranslateUi(self, Gaze_Estimation):
        _translate = QtCore.QCoreApplication.translate
        Gaze_Estimation.setWindowTitle(_translate("Gaze_Estimation", "Form"))
        self.label_predictor.setText(_translate("Gaze_Estimation", "<html><head/><body><p><span style=\" font-size:11pt;\">Predictor:</span></p></body></html>"))
        self.pushButton_predictor.setText(_translate("Gaze_Estimation", "选择文件"))
        self.label_gaze_model.setText(_translate("Gaze_Estimation", "<html><head/><body><p><span style=\" font-size:11pt;\">Gaze model:</span></p></body></html>"))
        self.pushButton_gaze_model.setText(_translate("Gaze_Estimation", "选择文件"))
        self.label_pnet_model.setText(_translate("Gaze_Estimation", "<html><head/><body><p><span style=\" font-size:11pt;\">Pnet model:</span></p></body></html>"))
        self.pushButton_pnet_model.setText(_translate("Gaze_Estimation", "选择文件"))
        self.label_rnet_model.setText(_translate("Gaze_Estimation", "<html><head/><body><p><span style=\" font-size:11pt;\">Rnet model:</span></p></body></html>"))
        self.pushButton_rnet_model.setText(_translate("Gaze_Estimation", "选择文件"))
        self.label_onet_mobel.setText(_translate("Gaze_Estimation", "<html><head/><body><p><span style=\" font-size:11pt;\">Onet model:</span></p></body></html>"))
        self.pushButton_onet_model.setText(_translate("Gaze_Estimation", "选择文件"))
        self.label_device.setText(_translate("Gaze_Estimation", "<html><head/><body><p><span style=\" font-size:11pt;\">Device:</span></p></body></html>"))
        self.pushButton_device.setText(_translate("Gaze_Estimation", "选择文件"))

二、用另一个py文件调用展示ui

pyqt5按钮运行py文件,python,Powered by 金山文档
import sys

from PyQt5.QtWidgets import *

from UI import Ui_Gaze_Estimation


class MyWindow(QWidget, Ui_Gaze_Estimation):
    def __init__(self):
        super(MyWindow, self).__init__()
        self.setupUi(self)
        self.retranslateUi(self)


if __name__ == "__main__":
    app = QApplication(sys.argv)

    w = MyWindow()
    # 展示窗口
    w.show()

    app.exec()

运行代码即可成功展示UI界面:

pyqt5按钮运行py文件,python,Powered by 金山文档

成功展示UI

三、参考

  1. Anaconda Prompt切换路径不能进入D盘_软件安装好难啊的博客-CSDN博客_为什么访问不了d盘 anaconda promote

  1. python下将.ui转为.py文件,并用另一个.py调用显示_郑琳潇的博客-CSDN博客_将ui文件转为py后怎么使用?

  1. PyQt将.ui文件转换为.py文件_跃然实验室的博客-CSDN博客_把ui文件转化为py文件文章来源地址https://www.toymoban.com/news/detail-578043.html

到了这里,关于PyQt5 将.ui文件转为.py文件并用另一个.py调用的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • PyQt5将.ui文件转换为.py文件的两种方法

    PyQt5是一个流行的Python库,用于创建图形用户界面(GUI)应用程序。在PyQt5中,可以使用Qt Designer工具创建GUI界面,并将其保存为.ui文件。然后,可以使用两种方法将.ui文件转换为.py文件,以便在Python代码中使用。 方法一:使用PyUIC工具 PyQt5附带了一个命令行工具 called pyuic5,

    2024年02月06日
    浏览(49)
  • Pyqt5将.ui文件转换成.py文件的两种方式

    PyQt 5安装成功后,pyuic5命令默认安装在%/python3x/Scripts目录下。我的pyuic5的安装路径是E:python35.Scripts。 如果想将firstMainWin.ui转换成.py文件,输入以下命令即可: 注意:如果输入pyuic5命令没有得到正确提示,而是提示“pyuic5不是内部命令或外部命令,也不是可运行的程序或批处理

    2024年02月11日
    浏览(63)
  • PyQt5实现多文件调用以及UI和逻辑分离

    UI   ui_untitled.py 逻辑代码页 目录 一、PyCharm+PyQt5的环境配置 二、使用Qt Designer将界面显示与业务逻辑分离 三、PyQt5工程中的多文件开发 转自原文链接 作为一个使用C++开发QT五年的“老”程序猿,总觉得使用C++开发GUI,是一个很费时费力或者说没有“钱”途的事情,因为现在

    2024年02月12日
    浏览(49)
  • Python3.7+PyQt5 pyuic5将.ui文件转换为.py文件、Python读取配置文件、生成日志

    1.实际开发项目时,是使用Qt Designer来设计UI界面,得到一个.ui的文件,然后利用PyQt5安装时自带的工具 pyuic5 将.ui文件转换为.py文件: 样式图 QT5 UI: 转换的pyqt5: 效果: 2.Python学习之读取配置文件: 初始配置文件test.conf: 步骤1:导入配置文件模块 步骤2:创建配置文件对象 步骤

    2024年01月25日
    浏览(50)
  • pyqt5超详细多进程界面设计及打包流程(UI框架建构、多线程打包、.ui.qrc文件的转.py)

    项目的目标是制作一个目标检测的UI界面,实现各类目标的实时检测。在制作的过程中真的遇到了数不清的坑,坑死人了。我自己梳理一下方便下次做项目还掉坑里,顺便给大伙避避坑,当然每个人遇到的情况不同,如果我遇到的问题恰好帮助你解决问题了那就太好啦。 在终

    2024年02月04日
    浏览(42)
  • python - 安装pyqt5模块,PyCharm配置QtDesigner/Pyuic/Pyrcc,ui转py文件,图片转ico/icns格式,pyinstaller/py2app打包代码

    window配置Python+PyQt5+QtDesigner+PyUic+PyRcc(最全安装教程):https://blog.csdn.net/baidu_35145586/article/details/108110236 MacOS配置Pycharm+Python+PyQt5+QtDesigner+PyUic+PyRcc: https://blog.csdn.net/lkhk2008/article/details/116019386 QtDesigner工具的使用(界面与业务逻辑分离实现):https://blog.csdn.net/weixin_62094306/art

    2024年02月03日
    浏览(49)
  • 树莓派(armv7l,arm32)buster配置Python虚拟环境、安装PyQt5、安装PySide2、ui和rc文件导出为py文件

    要从头设置好一台可用于开发的树莓派,可以参考树莓派 4B 无屏幕,连接WiFi、SSH、VNC,系统换源、pip换源,安装中文输入法 树莓派(或者说arm平台)使用Python虚拟环境的正确方式是使用 pipenv ,官网教程贴在这里pipenv-PyPi,建议先看懂,再进行树莓派的Python相关开发 PyQt5或者

    2024年01月20日
    浏览(44)
  • 【Python】pyqt5入门教程之第一个UI界面

    1.pyqt5工具安装 (1)使用pip工具安装PyQt5工具: (2)安装Qt Designer图形界面开发工具: 安装完成后所在路径 (3)安装QtDesigner 安装完成后所在路径 designer.exe路径 启动QtDesigner 2.第一个QT窗口程序 Pycharm配置 找到py文件,右键External Tool — QTDesigner—就可以启动 QTDesigner .ui文件转换

    2024年02月15日
    浏览(46)
  • 探索文件与交互:使用PyQt5构建一个高级文件选择器

    在当今的应用程序开发中,文件管理和交互是一个重要的组成部分。特别是对于桌面应用程序,提供一个直观、功能丰富的文件选择器是提高用户体验的关键。 本篇博客,我将介绍如何使用Python和PyQt5来构建一个高级的文件选择器,它不仅能浏览文件,还能预览图片,编辑文

    2024年01月24日
    浏览(44)
  • PyQt5学习笔记--加载Qt Designer设计的ui文件

    目录 1--直接加载ui文件 2--动态加载ui文件及其属性 3--绑定槽函数测试 4--登录程序实例练习 ① Qt Designer 下载地址​​​​​ ② 设计ui并保存导出   ③ 直接加载代码 ​ ① 在Qt Designer设计ui文件:   ② 源程序: ③ 结果测试  

    2024年02月10日
    浏览(50)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包