当前位置:   article > 正文

pyqt5 QTimer使用_qtpy qtimer

qtpy qtimer

说明

记录一下QTimer的测试代码

代码

# coding=utf8
import sys
import time

from PyQt5.QtCore import QTimer
from PyQt5.QtGui import QFont
from PyQt5.QtWidgets import QApplication, QMainWindow, QLabel


class Main:
    def __init__(self):
        self.app = QApplication(sys.argv)
        self.mainwindow = QMainWindow()
        self.mainwindow.resize(600, 600)
        self.mainwindow.setWindowTitle("测试QTimer")
        self.label = QLabel(self.mainwindow)
        self.label.setText("label1")
        self.label.setGeometry(10, 20, 300, 20)
        font = QFont("宋", 16)
        self.label.setFont(font)

        # 定时器
        self.timer = QTimer(self.mainwindow)
        # timeout信号
        self.timer.timeout.connect(self.onTimer)
        # start方法
        self.timer.start(1000)

        self.mainwindow.show()
        sys.exit(self.app.exec_())

    def onTimer(self):
        # 显示时间
        s = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
        self.label.setText(s)


if __name__ == "__main__":
    Main()
  • 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
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/854049
推荐阅读
相关标签
  

闽ICP备14008679号