QTimer *timer = new QTimer(this); connect(timer, SIGNAL(timeout()), this, SLOT(update())); timer->start(1000);. 从那时起,update()槽函数每秒都被调用。 你可以 ...
確定! 回上一頁