You can use QTimer for this. Try something like this: QTimer *t = new QTimer(this); t->setInterval(1000); connect(t, &QTimer::timeout, [&]() { QString time1 ...
確定! 回上一頁