当前位置:   article > 正文

简单的PyQt5教程

简单的PyQt5教程

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档


提示:以下是本篇文章正文内容,下面案例可供参考

一、PyQt5是什么是?

PyQt5是 Python 的图形用户界面 (GUI) 模块,您可以使用 Python 制作桌面应用程序。

二、安装PyQt5

安装

win+R打开运行,键入cmd回车进入cmd命令窗口

在cmd命令窗口打开中打开python:

C:\Users\Administrator>python

导入pip:

import pip
  • 1

用main函数打开pip

pip.main()
  • 1

下载PyQt5

pip download PyQt5
  • 1

安装PyQt5

pip install PyQt5
  • 1

如果pip需要更新(如果不需要,忽略):

C:\Users\Administrator>python -m pip install --upgrade pip

第一个Gui窗口

和其他GUI一样,首先要导入模块

import sys
from PyQt5.QtWidgets import QApplication, QPushButton,QWidget
  • 1
  • 2

QtWidgets,QtGui,QtCore是PyQt5的三大组件,而QWidget是QtWidgets的子类,一般创建窗口用QtWidgets的子类QWidget,QMainWindow。
然后创建一个类继承自QWidget

class window(QWidget):
  • 1

并且必须继承父类的__init__()方法,不然会报错

super().__init__()
  • 1

完整代码如下(示例):

import sys
from PyQt5.QtWidgets import QApplication, QPushButton,QWidget

app = QApplication(sys.argv)


class window(QWidget):
    def __init__(self):
        super().__init__()
        self.lb=QPushButton("hello,world",self)
        self.show()
if __name__=='__main__':
    w=window()
    app.exec()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

二,QLabel

QLabel是QLabel用于显示文本的小部件
完整代码如下(示例):

import sys
from PyQt5.QtWidgets import QApplication, QLabel,QWidget

app = QApplication(sys.argv)


class window(QWidget):
    def __init__(self):
        super().__init__()
        self.lb=QLabel("hello,world",self)
        self.show()
if __name__=='__main__':
    w=window()
    app.exec()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

三,QCheckBox

完整代码如下(示例):

import sys
from PyQt5.QtWidgets import QApplication,QMainWindow,QCheckBox

app = QApplication(sys.argv)


class window(QMainWindow):
    mylist="java","C++","python"
    
    def __init__(self):
        super().__init__()
        self.width = 640
        self.height = 400
        self.setGeometry(10,10, self.width, self.height)
        self.sp=QCheckBox("java",self)
        self.sp2=QCheckBox("pyton",self)
        self.sp.move(100,100)
        self.sp2.move(100,200)
        
        
        


        
        self.show()
if __name__=='__main__':
    w=window()
    app.exec()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

四,QComboBox

完整代码如下(示例):

import sys
from PyQt5.QtWidgets import QApplication,QMainWindow,QComboBox

app = QApplication(sys.argv)


class window(QMainWindow):
    mylist="java","C++","python"
    
    def __init__(self):
        super().__init__()
        self.width = 640
        self.height = 400
        self.setGeometry(10,10, self.width, self.height)

        self.combobox=QComboBox(self)
        self.combobox.addItems(self.mylist)
        
        self.show()
if __name__=='__main__':
    w=window()
    app.exec()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

五,QRadioButton

完整代码如下(示例):

import sys
from PyQt5.QtWidgets import QApplication,QMainWindow,QRadioButton

app = QApplication(sys.argv)


class window(QMainWindow):
    def __init__(self):
        super().__init__()
        self.width = 640
        self.height = 400
        self.setGeometry(10,10, self.width, self.height)
        self.rbtn=QRadioButton("java",self)
        self.rbtn2=QRadioButton("C++",self)
        self.rbtn3=QRadioButton("python",self)

        self.rbtn.move(100,100)
        self.rbtn2.move(100,200)
        self.rbtn3.move(100,300)
        self.show()
if __name__=='__main__':
    w=window()
    app.exec()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

六,菜单

import sys
from PyQt5.QtWidgets import QApplication,QMainWindow

app = QApplication(sys.argv)


class window(QMainWindow):
    def __init__(self):
        super().__init__()
        self.width = 640
        self.height = 400
        self.setGeometry(10,10, self.width, self.height)
        mainMenu = self.menuBar()
        fileMenu = mainMenu.addMenu('File')
        editMenu = mainMenu.addMenu('Edit')
        viewMenu = mainMenu.addMenu('View')
        searchMenu = mainMenu.addMenu('Search')
        toolsMenu = mainMenu.addMenu('Tools')
        helpMenu = mainMenu.addMenu('Help')
        self.show()
if __name__=='__main__':
    w=window()
    app.exec()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

七,QSpinBox

完整代码如下(示例):

import sys
from PyQt5.QtWidgets import QApplication,QMainWindow,QRadioButton,QSpinBox

app = QApplication(sys.argv)


class window(QMainWindow):
    mylist="java","C++","python"
    
    def __init__(self):
        super().__init__()
        self.width = 640
        self.height = 400
        self.setGeometry(10,10, self.width, self.height)
        self.sp=QSpinBox(self)


        
        self.show()
if __name__=='__main__':
    w=window()
    app.exec()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/974366
推荐阅读
相关标签
  

闽ICP备14008679号