赞
踩
上一篇文章:
目录
因为PyCharm是使用较多集成开发环境,所以本篇文章主要用PyCharm进行演示,如果有用vscode或其他开发工具的小伙伴,可以在网上参考相对应的文章。方便大家理解和观看,我用的是汉化过的PyCharm,如果还没有汉化过的小伙伴可以看看这篇文章:Python下载和安装及Pycharm专业版安装+汉化+解决安装常见问题超详细教程(图解)
为了方便地使用PyQt/PySidet进行UI设计,本篇文章总结了在PyCharm配置PySide开发工具的方法(PySide6的安装方法在上一篇文章中),如果有使用PyQt5的小伙伴推荐一篇高质量的安装和配置PyQt5及其工具教程:PyCharm安装PyQt5及其工具(Qt Designer、PyUIC、PyRcc)详细教程_思绪无限的博客-CSDN博客_pycharm安装pyqt5
可能有人还不清楚这几个工具的用途,这里对PySide开发工具简介如下:
安装完成PySide6后,再次在终端中输入pip install PySide6可以看到PySide6安装路径,复制in后面的路径(例如:d:\pythonpro\pyside6-test\venv\lib\site-packages),选中并打开你的路径。
打开路径后,找到并进入PySide6文件夹中。
找到PySide6文件夹中的designer.exe,并记录designer.exe所在位置。
打开PyCharm的设置界面
找到“工具”中的“外部工具”选项
点击“+”按钮新建工具,弹出“创建工具”界面。
其他选项默认即可,然后点击“确定”,Qt Desinger就配置完成啦!
在当前目录下的终端中输入where pyside6-uic,记录输出路径:
参照Qt Designer的方式打开“创建工具”界面。
其他选项默认即可,然后点击“确定”,PyUIC就配置完成啦!
在当前目录下的终端中输入where pyside6-rcc,记录输出路径:
PyRcc工具的配置方式与PyUIC相似,同样打开“创建工具”界面
其他选项默认即可,然后点击“确定”,PyRcc就配置完成啦!
如果使用的是上述的方法配置Qt Designer,那么在PyCharm中你可以通过下列两种方式打开Qt Desinger。
前提是在“实参”选项中添加了“$FilePath$”,右击项目中的ui文件,弹出工具选择框,找到“External Tools”(或自己设置的组名称),点击“Qt Desinger”(或自己设置的名称)。
点击菜单栏“工具”,弹出下拉框,选择“External Tools”(或自己设置的组名称),弹出工具选择框。选择“Qt Designer”(或自己设置的名称)。
创建一个untitled.ui文件,并把代码复制到文件中
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>Form</class>
- <widget class="QWidget" name="Form">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>300</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>这是个测试窗口</string>
- </property>
- <widget class="QPushButton" name="pushButton">
- <property name="geometry">
- <rect>
- <x>110</x>
- <y>190</y>
- <width>171</width>
- <height>51</height>
- </rect>
- </property>
- <property name="text">
- <string>这是一个测试按钮</string>
- </property>
- </widget>
- <widget class="QLabel" name="label">
- <property name="geometry">
- <rect>
- <x>160</x>
- <y>90</y>
- <width>61</width>
- <height>21</height>
- </rect>
- </property>
- <property name="text">
- <string>这是个标签</string>
- </property>
- </widget>
- <widget class="QPushButton" name="pushButton_2">
- <property name="geometry">
- <rect>
- <x>360</x>
- <y>10</y>
- <width>31</width>
- <height>31</height>
- </rect>
- </property>
- <property name="text">
- <string>X</string>
- </property>
- </widget>
- </widget>
- <resources/>
- <connections>
- <connection>
- <sender>pushButton_2</sender>
- <signal>clicked()</signal>
- <receiver>Form</receiver>
- <slot>close()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>372</x>
- <y>17</y>
- </hint>
- <hint type="destinationlabel">
- <x>297</x>
- <y>24</y>
- </hint>
- </hints>
- </connection>
- </connections>
- </ui>
在untitled.ui文件上右击,在弹出的菜单中使用上述配置好的uic工具
即可转换为py文件
在要转换的qrc文件上右击,在弹出的菜单中使用上述配置好的rcc工具
即可转换为py文件
以上就是Pycharm中配置PyQt/PySide开发工具Qt Designer、PyUIC、PyRcc,如有疏漏之处,希望大家能热心指出其中的错误,本专栏会长期不定期地更新,如果觉得不错的可以订阅本专栏并点个关注,如有疑问欢迎随时反馈,感谢大家观看。
参考文章:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。