PyQt5中QTimer定时器的实例代码

作者:Anony吧 时间:2021-06-01 07:28:54 

如果要在应用程序中周期性地进行某项操作,比如周期性地检测主机的CPU值,则需要用到QTimer定时器,QTimer类提供了重复的和单次的定时器。要使用定时器,需要先创建一个QTimer实例,将其timeout信号连接到相应的槽,并调用start()。然后定时器会以恒定的间隔发出timeout信号,当窗口控件收到timeout信号后,它就会停止这个定时器。

一、QTimer类中的常用方法

方法描述
start(milliseconds)启动或重新启动定时器,时间间隔为毫秒。如果定时器已经运行,它将被停止并重新启动。如果singleShot信号为真,定时器将仅被激活一次
Stop()停止定时器

二、QTimer类中的常用信号

信号描述
singleShot在给定的时间间隔后调用一个槽函数时发射此信号
timeout当定时器超时时发射此信号

三、QTimer的使用

示例1:


import sys
from PyQt5 import QtCore
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *

class Demo(QWidget):
   count = 0
   def __init__(self):
       super().__init__()
       self.setGeometry(100, 50, 500, 400)
       self.setWindowTitle('QTimer')

self.list = QListWidget()
       self.label = QLabel('显示当前时间')
       self.start = QPushButton('开始')
       self.end = QPushButton('结束')
       layout = QGridLayout()

#初始化定时器
       self.timer = QTimer(self)
       self.timer.timeout.connect(self.showTime)
       self.start.clicked.connect(self.startTimer)
       self.end.clicked.connect(self.endTimer)

layout.addWidget(self.label,0,0,1,2)
       layout.addWidget(self.start,1,0)
       layout.addWidget(self.end,1,1)
       self.setLayout(layout)

def showTime(self):
       #获取系统现在的时间
       time = QDateTime.currentDateTime().toString('yyyy-MM-dd hh:mm:ss dddd')
       self.label.setText(time)

def startTimer(self):
       #设置时间间隔并启动定时器
       self.timer.start(1000)
       self.start.setEnabled(False)
       self.end.setEnabled(True)

def endTimer(self):
       #关闭定时器
       self.timer.stop()
       self.start.setEnabled(True)
       self.end.setEnabled(False)

if __name__ == "__main__":
   app = QApplication(sys.argv)
   form = Demo()
   form.show()
   sys.exit(app.exec_())

运行效果如下:

PyQt5中QTimer定时器的实例代码

示例2:


import sys
from PyQt5 import QtCore
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *

if __name__ == "__main__":
   app = QApplication(sys.argv)
   label = QLabel('<font color=blue size=20><b>PyQt5,窗口5秒后消失</b></font>')
   #无边框窗口
   label.setWindowFlags(Qt.SplashScreen|Qt.FramelessWindowHint)
   label.show()
   #设置5秒后自动退出
   QTimer.singleShot(5000,app.quit)
   sys.exit(app.exec_())

运行效果如下:

PyQt5中QTimer定时器的实例代码

PyQt5 QTimer计数到特定的秒数

我正在使用python创建程序,并且正在使用pyqt。我目前正在使用QTimer,我想每秒钟打印一次“ timer works”,并在5秒钟后停止打印。这是我的代码:


timers = []
def thread_func():
   print("Thread works")
   timer = QtCore.QTimer()
   timer.timeout.connect(timer_func)
   timer.start(1000)
   print(timer.remainingTime())
   print(timer.isActive())
   timers.append(timer)

def timer_func():
   print("Timer works")

解决方案

以下是一个简单的演示,显示了如何创建在固定数量的超时后停止计时的计时器。


from PyQt5 import QtCore

def start_timer(slot, count=1, interval=1000):
   counter = 0
   def handler():
       nonlocal counter
       counter += 1
       slot(counter)
       if counter >= count:
           timer.stop()
           timer.deleteLater()
   timer = QtCore.QTimer()
   timer.timeout.connect(handler)
   timer.start(interval)

def timer_func(count):
   print('Timer:', count)
   if count >= 5:
       QtCore.QCoreApplication.quit()

app = QtCore.QCoreApplication([])
start_timer(timer_func, 5)
app.exec_()

来源:https://blog.csdn.net/qq_44880255/article/details/107702123

标签:PyQt5,QTimer,定时器
0
投稿

猜你喜欢

  • asp.net上传图片保存到数据库的代码

    2024-01-16 05:00:37
  • Keras自定义IOU方式

    2022-12-24 07:48:27
  • Pytorch中torch.unsqueeze()与torch.squeeze()函数详细解析

    2022-05-22 00:41:57
  • Python 实现将数组/矩阵转换成Image类

    2023-03-06 18:09:25
  • pycharm设置鼠标悬停查看方法设置

    2022-12-25 16:04:31
  • Python调用腾讯API实现人脸身份证比对功能

    2023-11-27 20:18:06
  • js 数据存储和DOM编程

    2024-02-24 07:52:31
  • mysql中关键词exists的用法实例详解

    2024-01-20 18:41:25
  • Python 如何反方向迭代一个序列

    2022-12-07 09:44:19
  • 基于PHP实现用户登录注册功能的详细教程

    2024-04-30 08:50:27
  • 用ASP和SQL语句动态的创建Access表

    2008-10-14 16:59:00
  • pyqt5制作登录窗口的详细过程

    2023-12-07 05:28:36
  • Python实现Socket通信建立TCP反向连接

    2023-11-13 04:20:19
  • Python中用pyinstaller打包时的图标问题及解决方法

    2021-11-10 01:41:33
  • 教你快速掌握数据库查询优化的实用技巧

    2008-11-28 15:10:00
  • Python中字典(dict)合并的四种方法总结

    2022-08-28 00:40:56
  • javascript实现锁定网页、密码解锁效果(类似系统屏幕保护效果)

    2023-08-18 20:01:36
  • FrontPage2002简明教程三:网页布局

    2008-09-17 11:19:00
  • python监控网卡流量并使用graphite绘图的示例

    2022-06-24 22:35:54
  • 推荐20家国外的脚本下载网站

    2023-08-23 11:36:02
  • asp之家 网络编程 m.aspxhome.com