pycharm配置QtDesigner的超詳細方法

一、QtDesigner介紹

Qt Designer 是一款GUI界面工具,可以實現將UI設計界面轉為Python代碼的工具;

二、安裝 QTdesigner

使用命令

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

三、配置QTdesigner

打開 pycharm 進入工程 , 點擊 file–>settings —.tools— extends Tools 的加號進行配置擴展程序

路徑:designer 的安裝路徑

參數:$FileDir$

工作目錄$ProjectFileDir$

配置完打開 pycharm 的擴展工具即可在當前工程打開designer;

打開後隨意點擊控件拖入 框中,表示配置成功;

保存當前文件到當前工程命名為hello.ui;

四 配置 pyuic5

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

pyrcc5.exe 是將 資源文件轉為 Python 文件

參數:

$FileName$ -o $FileNameWithoutExtension$_rc.py

到此這篇關於pycharm配置QtDesigner的方法的文章就介紹到這瞭,更多相關pycharm配置QtDesigner內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: