看看我写的,
https://hgoldfish.com/blogs/article/78/
建议你弄个线程执行这种高耗时操作。线程里面大致这样写:
class WorkerThread: public QThread {
public:
virtual void run() {
while (!exiting.load()) { doIt(); }
}
QAtomicInt exiting;
};
主界面就是简单地定时设置 thread->exiting.store(true);
【 在 scanworld (臭蛋超人) 的大作中提到: 】
: 想用qtimeedit做一个倒计时
: 倒计时的过程中执行其它任务
: 倒计时到0的时候执行结束
: ...................
--
FROM 183.253.138.*