您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在pycharm對QtDesigner進行配置,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
Qt Designer 是一款GUI界面工具,可以實現將UI設計界面轉為Python代碼的工具;
使用命令
pip install PyQt5-tools -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com
如果已經安裝過 anaconda 可以直接使用 如果命令進行安裝
conda install PyQt5-tools
安裝完后找到 安裝包的路徑,比如我的安裝路徑如下
C:\soft\anaconda\envs\data_dig\Lib\site-packages\pyqt5_tools\Qt\bin\designer.exe
打開 pycharm 進入工程 , 點擊 file–>settings —.tools— extends Tools 的加號進行配置擴展程序
路徑:designer 的安裝路徑
參數:$FileDir$
工作目錄$ProjectFileDir$
配置完打開 pycharm 的擴展工具即可在當前工程打開designer;
打開后隨意點擊控件拖入 框中,表示配置成功;
保存當前文件到當前工程命名為hello.ui;
pyuic5 是將 desginer 生成的ui文件轉為 python文件
同樣在擴展工具中添加配置
因為我的環境都是anaconda安裝的所以在C:\soft\anaconda\envs\data_dig\Scripts\下就找到了,然后進行配置;
參數:$FileName$ -o $FileNameWithoutExtension$.py
工作目錄:$ProjectFileDir$
配置完成后就可以將剛剛hello.ui 文件進行點擊右鍵,選擇擴展程序 PyUIC 就自動在工程目錄下將hello.ui 文件轉為了 hello.py
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'hello.ui' # # Created by: PyQt5 UI code generator 5.13.0 # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore, QtGui, QtWidgets class Ui_Form(object): def setupUi(self, Form): Form.setObjectName("Form") Form.resize(400, 300) self.pushButton = QtWidgets.QPushButton(Form) self.pushButton.setGeometry(QtCore.QRect(50, 60, 75, 23)) self.pushButton.setObjectName("pushButton") self.radioButton = QtWidgets.QRadioButton(Form) self.radioButton.setGeometry(QtCore.QRect(70, 170, 89, 16)) self.radioButton.setObjectName("radioButton") self.toolButton = QtWidgets.QToolButton(Form) self.toolButton.setGeometry(QtCore.QRect(230, 140, 37, 18)) self.toolButton.setObjectName("toolButton") self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form) def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) self.pushButton.setText(_translate("Form", "PushButton")) self.radioButton.setText(_translate("Form", "RadioButton")) self.toolButton.setText(_translate("Form", "..."))
pyrcc5.exe 是將 資源文件轉為 Python 文件
參數:
$FileName$ -o $FileNameWithoutExtension$_rc.py
關于怎么在pycharm對QtDesigner進行配置就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。