QTimer *timer = new QTimer(this); connect(timer, SIGNAL(timeout()), this, SLOT(update())); timer->start(1000);. From then on, the update() slot is called every ...
確定! 回上一頁