0%

QT中定时更新日期时间控件

如何定时更新日期时间控件

首先定义一个定时器

1
2
3
timer = new QTimer(this);
connect(timer,SIGNAL(timeout()),this,SLOT(update_time()));
timer->start(1000);

编写定时器对应的信号槽

1
2
QDateTime current = QDateTime::currentDateTime();
ui->dateTimeEdit->setDateTime(current);
处无为之事,行不言之教;作而弗始,生而弗有,为而弗恃,功成不居!

欢迎关注我的其它发布渠道