qt 计时器自动刷新图片

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qt 计时器自动刷新图片相关的知识,希望对你有一定的参考价值。

计时器

技术分享
 1   QTimer *timer;
 2   timer->start (2000);
 3 void PictureShow::stopStartPage()
 4 {
 5     if (timer->isActive())
 6     {
 7         timer->stop();
 8     }
 9     
10     else
11     {
12         timer->start();
13     }
14 }
View Code
 connect (timer, SIGNAL (timeout()), this, SLOT (nextPage()));

 

 demo如下:

http://url.cn/28SNGJh

以上是关于qt 计时器自动刷新图片的主要内容,如果未能解决你的问题,请参考以下文章