python图形开发GUI库pyqt5的基本使用方法详解
一:安装PyQt5
pipinstallpyqt5
如果你的系统没有安装pip请阅读我们的另一篇文章windows下python安装pip方法详解
二:PyQt5简单使用
#!/usr/bin/python3
#-*-coding:utf-8-*-
"""
Py40.comPyQt5tutorial
Inthisexample,wecreateasimple
windowinPyQt5.
author:JanBodnar
website:py40.com
lastedited:January2015
"""
importsys
#这里我们提供必要的引用。基本控件位于pyqt5.qtwidgets模块中。
fromPyQt5.QtWidgetsimportQApplication,QWidget
if__name__=='__main__':
#每一pyqt5应用程序必须创建一个应用程序对象。sys.argv参数是一个列表,从命令行输入参数。
app=QApplication(sys.argv)
#QWidget部件是pyqt5所有用户界面对象的基类。他为QWidget提供默认构造函数。默认构造函数没有父类。
w=QWidget()
#resize()方法调整窗口的大小。这离是250px宽150px高
w.resize(250,150)
#move()方法移动窗口在屏幕上的位置到x=300,y=300坐标。
w.move(300,300)
#设置窗口的标题
w.setWindowTitle('Simple')
#显示在屏幕上
w.show()
#系统exit()方法确保应用程序干净的退出
#的exec_()方法有下划线。因为执行是一个Python关键词。因此,exec_()代替
sys.exit(app.exec_())
上面的示例代码在屏幕上显示一个小窗口。
应用程序的图标
应用程序图标是一个小的图像,通常在标题栏的左上角显示。在下面的例子中我们将介绍如何做pyqt5的图标。同时我们也将介绍一些新方法。
#!/usr/bin/python3
#-*-coding:utf-8-*-
"""
py40PyQt5tutorial
Thisexampleshowsanicon
inthetitlebarofthewindow.
author:JanBodnar
website:py40.com
lastedited:January2015
"""
importsys
fromPyQt5.QtWidgetsimportQApplication,QWidget
fromPyQt5.QtGuiimportQIcon
classExample(QWidget):
def__init__(self):
super().__init__()
self.initUI()#界面绘制交给InitUi方法
definitUI(self):
#设置窗口的位置和大小
self.setGeometry(300,300,300,220)
#设置窗口的标题
self.setWindowTitle('Icon')
#设置窗口的图标,引用当前目录下的web.png图片
self.setWindowIcon(QIcon('web.png'))
#显示窗口
self.show()
if__name__=='__main__':
#创建应用程序和对象
app=QApplication(sys.argv)
ex=Example()
sys.exit(app.exec_())
前面的例子是在程序风格。Python编程语言支持程序和面向对象编程风格。Pyqt5使用OOP编程。
classExample(QWidget): def__init__(self): super().__init__() ...
面向对象编程有三个重要的方面:类、变量和方法。这里我们创建一个新的类为Examle。Example继承自QWidget类。
显示提示语
在下面的例子中我们显示一个提示语
#!/usr/bin/python3
#-*-coding:utf-8-*-
"""
Py40PyQt5tutorial
Thisexampleshowsatooltipon
awindowandabutton.
author:JanBodnar
website:py40.com
lastedited:January2015
"""
importsys
fromPyQt5.QtWidgetsimport(QWidget,QToolTip,
QPushButton,QApplication)
fromPyQt5.QtGuiimportQFont
classExample(QWidget):
def__init__(self):
super().__init__()
self.initUI()
definitUI(self):
#这种静态的方法设置一个用于显示工具提示的字体。我们使用10px滑体字体。
QToolTip.setFont(QFont('SansSerif',10))
#创建一个提示,我们称之为settooltip()方法。我们可以使用丰富的文本格式
self.setToolTip('ThisisaQWidgetwidget')
#创建一个PushButton并为他设置一个tooltip
btn=QPushButton('Button',self)
btn.setToolTip('ThisisaQPushButtonwidget')
#btn.sizeHint()显示默认尺寸
btn.resize(btn.sizeHint())
#移动窗口的位置
btn.move(50,50)
self.setGeometry(300,300,300,200)
self.setWindowTitle('Tooltips')
self.show()
if__name__=='__main__':
app=QApplication(sys.argv)
ex=Example()
sys.exit(app.exec_())
运行程序,显示一个窗口
关闭窗口
关闭一个窗口可以点击标题栏上的X。在下面的例子中,我们将展示我们如何通过编程来关闭窗口。
#!/usr/bin/python3
#-*-coding:utf-8-*-
"""
Py40PyQt5tutorial
Thisprogramcreatesaquit
button.Whenwepressthebutton,
theapplicationterminates.
author:JanBodnar
website:py40.com
lastedited:January2015
"""
importsys
fromPyQt5.QtWidgetsimportQWidget,QPushButton,QApplication
fromPyQt5.QtCoreimportQCoreApplication
classExample(QWidget):
def__init__(self):
super().__init__()
self.initUI()
definitUI(self):
qbtn=QPushButton('Quit',self)
qbtn.clicked.connect(QCoreApplication.instance().quit)
qbtn.resize(qbtn.sizeHint())
qbtn.move(50,50)
self.setGeometry(300,300,250,150)
self.setWindowTitle('Quitbutton')
self.show()
if__name__=='__main__':
app=QApplication(sys.argv)
ex=Example()
sys.exit(app.exec_())
消息框
默认情况下,如果我们单击x按钮窗口就关门了。有时我们想修改这个默认的行为。例如我们在编辑器中修改了一个文件,当关闭他的时候,我们显示一个消息框确认。
#!/usr/bin/python3
#-*-coding:utf-8-*-
"""
ZetCodePyQt5tutorial
Thisprogramshowsaconfirmation
messageboxwhenweclickontheclose
buttonoftheapplicationwindow.
author:JanBodnar
website:zetcode.com
lastedited:January2015
"""
importsys
fromPyQt5.QtWidgetsimportQWidget,QMessageBox,QApplication
classExample(QWidget):
def__init__(self):
super().__init__()
self.initUI()
definitUI(self):
self.setGeometry(300,300,250,150)
self.setWindowTitle('Messagebox')
self.show()
defcloseEvent(self,event):
reply=QMessageBox.question(self,'Message',
"Areyousuretoquit?",QMessageBox.Yes|
QMessageBox.No,QMessageBox.No)
ifreply==QMessageBox.Yes:
event.accept()
else:
event.ignore()
if__name__=='__main__':
app=QApplication(sys.argv)
ex=Example()
sys.exit(app.exec_())
我们关闭窗口的时候,触发了QCloseEvent。我们需要重写closeEvent()事件处理程序。
reply=QMessageBox.question(self,'Message', "Areyousuretoquit?",QMessageBox.Yes| QMessageBox.No,QMessageBox.No)
我们显示一个消息框,两个按钮:“是”和“不是”。第一个字符串出现在titlebar。第二个字符串消息对话框中显示的文本。第三个参数指定按钮的组合出现在对话框中。最后一个参数是默认按钮,这个是默认的按钮焦点。
ifreply==QtGui.QMessageBox.Yes: event.accept() else: event.ignore()
我们处理返回值,如果单击Yes按钮,关闭小部件并终止应用程序。否则我们忽略关闭事件。
窗口显示在屏幕的中间
下面的脚本显示了如何在屏幕中心显示窗口。
#!/usr/bin/python3
#-*-coding:utf-8-*-
"""
Py40PyQt5tutorial
Thisprogramcentersawindow
onthescreen.
author:JanBodnar
website:py40.com
lastedited:January2015
"""
importsys
fromPyQt5.QtWidgetsimportQWidget,QDesktopWidget,QApplication
classExample(QWidget):
def__init__(self):
super().__init__()
self.initUI()
definitUI(self):
self.resize(250,150)
self.center()
self.setWindowTitle('Center')
self.show()
#控制窗口显示在屏幕中心的方法
defcenter(self):
#获得窗口
qr=self.frameGeometry()
#获得屏幕中心点
cp=QDesktopWidget().availableGeometry().center()
#显示到屏幕中心
qr.moveCenter(cp)
self.move(qr.topLeft())
if__name__=='__main__':
app=QApplication(sys.argv)
ex=Example()
sys.exit(app.exec_())
QtGui,QDesktopWidget类提供了用户的桌面信息,包括屏幕大小。
本篇文章只是简单示范pyqt5的基本使用方法更详细的使用方法请查看我们的另一篇文章python图形开发GUI库pyqt5的详细使用方法及各控件的属性与方法
更多关于python图形开发GUI库pyqt5的基本使用方法请查看下面的相关链接
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。