qt designer用于像vc++的mfc一样拖放、设计控件
pyuic用于将qt designer生成的.ui文件转换成.py文件
qt designer和pyuic都包含在pyqt5中,所以我们只需要安装pyqt5塻块然后再指定qt designer和pyuic即可
为了避免篇幅过长,本文只讲安装配置,使用可查看“pycharm+qtdesigner+pyuic使用教程”
一、安装pyqt5
qt designer包含在pyqt5中,而pyqt5就是一个python模块,所以我们可以直接通过“pip3 install pyqt5”安装
但是我们这里使用pycharm集成开发环境,所以直接通过pycharm安装
打开pycharm,新建一个项目
二、指定qt designer和pyuic
name--输入最后工具在菜单中的想呈现名称,比如我这里命名为qtdesigner
program--designer.exe程序的位置,位于当前所用解析器的lib\site-packages\pyqt5-tools\designer.exe
working directory--designer.exe工作路径,设置为$projectfiledir$
类似地添加pyuic,
name----pyuic
program----pyuic位于当前解析器的scripts\pyuic5.exe
arguments----$filename$ -o $filenamewithoutextension$.py
working dirctory----$projectfiledir$
回到主界面“tools”--“external tools”即可看到我们添加的qtdesigner和pyuic
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.cnblogs.com/lsdb/p/9121903.html