欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PyCharm开发GUI之PyQt安装

程序员文章站 2022-05-02 12:59:25
开发环境 PyCharm 2018.3.3python3.7 1 安装pyqt5 pip install PyQt5-tools 2 配置PyCharm 2.1 配置设计器 其中,program为C:\Users\edwin\AppData\Local\Programs\Python\Python3 ......

开发环境

pycharm 2018.3.3
python3.7

 

 

1 安装pyqt5

pip install pyqt5-tools

2 配置pycharm

2.1 配置设计器

PyCharm开发GUI之PyQt安装

 

其中,program为c:\users\edwin\appdata\local\programs\python\python37\lib\site-packages\pyqt5_tools\designer.exe

arguments为$filename$

working directory为$filedir$

使用方法,新建 

PyCharm开发GUI之PyQt安装

 编缉

PyCharm开发GUI之PyQt安装

2.2 配置ui文件生成为py代码工具

PyCharm开发GUI之PyQt安装

其中,program定义为c:\users\edwin\appdata\local\programs\python\python37\python.exe

arguments为-m pyqt5.uic.pyuic $filename$ -o $filenamewithoutextension$.py

working directory为$filedir$

使用时

PyCharm开发GUI之PyQt安装

 

3 代码示例


from ui.main import ui_form
from pyqt5 import qtcore
from pyqt5 import qtwidgets



if __name__ == "__main__":
app = qtwidgets.qapplication(sys.argv)
w = qtwidgets.qmainwindow()
ex = ui_form()
ex.setupui(w)
w.show()
sys.exit(app.exec_())