PyQt5 QTimer计数直到特定秒

时间:2017-10-09 23:50:08

标签: python pyqt pyqt5 qtimer

我在python中创建一个程序,我正在使用pyqt。我目前正在使用QTimer,我想每秒打印“计时器工作”并在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")

1 个答案:

答案 0 :(得分:3)

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

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_()