vault backup: 2024-02-17 23:11:19

This commit is contained in:
2024-02-17 23:11:20 +08:00
parent 758fec56e6
commit d7f574153d
78 changed files with 28 additions and 588 deletions

View File

@@ -0,0 +1,19 @@
使用QTimer來反覆執行工作。
QTimer可以單次執行也可以多次執行。
使用概念如下:
1. 建立 QTimer 物件,例如叫做 timer。
2. 連接QTimer的timeout signal到你的反應 function
3. 呼叫 timer->start()
Example:
```cpp
QTimer* timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), this, SLOT(update()));
timer->start(1000);
```
QTimer可以單次執行
```cpp
QTimer::singleShot(200, this, SLOT(update());
```