QTimer *timer;//构造函数里timer = new QTimer(this);//相应的槽函数timer->setInterval(1000);//设置定时时间timer->start();//开始计时timer->stop();//停止计时//定时时间到槽函数connect(timer,&QTimer::timeout,this,&DialogTest::slotTimerTimeOut);
京公网安备 11010502049817号