码迷,mamicode.com
首页 > 其他好文 > 详细

使用processEvents()来保持用户界面响应的例子

时间:2014-10-18 13:56:42      阅读:1134      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   使用   for   sp   div   

直接上例子吧:

//确定按钮函数
void Dialog::buttonClicked()
{
   for(int i=0; i<100; i++) {
       for(int j=0; j<10000000; j++) {
       }
       qApp>processEvents(/*QEventLoop::ExcludeUserInputEvents*/);
   }
   if (!(QMessageBox::information(this,QString::fromLocal8Bit("提示"),QString::fromLocal8Bit("确定吗?"),
                                     QString::fromLocal8Bit(""),QString::fromLocal8Bit(""))))
   {
       this->close();
   }
}

 

使用processEvents()来保持用户界面响应的例子

标签:style   blog   color   io   os   使用   for   sp   div   

原文地址:http://www.cnblogs.com/zw-h/p/4032970.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!