Qt:通过QLabel控件来显示实时日期时间

头文件需添加:

#include 

构造函数中:

//日期/时间显示
QTimer *timer = new QTimer(this);
connect(timer,SIGNAL(timeout()),this,SLOT(timerUpdate()));
timer->start(1000);

定义成员函数timerUpdate()实现用户界面显示时间:

void userwindow::timerUpdate()
{
    QDateTime time = QDateTime::currentDateTime();

    QString str = time.toString("yyyy-MM-dd hh:mm:ss dddd");

    ui->dateTime->setText(str);
}

你可能感兴趣的:(QT)