当前位置:   article > 正文

Qt - Python - PyQt/PySide - QTimer的使用详解_python qtimer

python qtimer

QTimer的使用

1.创建
2.连接信号与槽
3.设置一个标志(按需求)
4.启动与停止

# -*- coding: utf-8 -*-
import sys
from PyQt5.QtCore import QTimer
from PyQt5.QtWidgets import QDialog, QApplication


# 确认提示框页面实现类
class DialogPre(QDialog):
    def __init__(self):
        super(DialogPre, self).__init__()

        self.timer = QTimer()  # 初始化创建定时器
        self.timer.timeout.connect(self.excute)  # 每间隔启动时传参的时间触发一次timeout信号,取决于timer.start(param)param的时间
        self.timeCount = 0  # 标志
        self.timer.start(1000)  # 启动,start()参数时间间隔单位毫秒,1000毫秒 = 1秒
     
     # 槽函数   
    def excute(self):
        self.timeCount += 1
        print(self.timeCount)

        if self.timeCount == 12:
            self.timeCount = 0
            self.timer_pre_treat.stop()


if __name__ == "__main__":
    app = QApplication(sys.argv)
    win = DialogPre()
    win.timer_pre_treat.start(1000)

    sys.exit(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
  • 29
  • 30
  • 31
  • 32
  • 33
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/797754
推荐阅读
相关标签
  

闽ICP备14008679号