pyqt:如何每隔几秒钟显示和隐藏标签?我使用pyqt和python

时间:2019-02-12 21:24:23

标签: python pyqt qt-designer

嗨:我想让标签在一段时间后显示和隐藏。但是我的代码只能让它消失一次。非常感谢您的帮助〜

import time

def hide():

    ui.label.hide()

timer = QTimer()

timer.timeout.connect(hide)

timer.start(900)

0 个答案:

没有答案