Qt5 实现主窗口状态栏显示时间
更新时间:2021年03月17日 17:16:33 作者:落叶_小唱
这篇文章主要介绍了Qt5 实现主窗口状态栏显示时间,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
使用Qt Creator创建默认的窗体程序后,主窗口QMainWindow有statusBar状态栏,在此状态栏实时显示时间可以使用下面方法实现:
mainwindow.h文件内容:
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> #include <mydialog.h> #include <QLabel> namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = 0); ~MainWindow(); private slots: void on_actionNew_Window_triggered(); void time_update(); //时间更新槽函数,状态栏显示时间 private: Ui::MainWindow *ui; QLabel *currentTimeLabel; // 先创建一个QLabel对象 MyDialog *mydialog; }; #endif // MAINWINDOW_H
mainwindow.c文件内容:
#include "mainwindow.h" #include "ui_mainwindow.h" #include "mydialog.h" #include <QLabel> #include <QDateTime> #include <QTimer> #include <QString> MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); currentTimeLabel = new QLabel; // 创建QLabel控件 ui->statusBar->addWidget(currentTimeLabel); //在状态栏添加此控件 QTimer *timer = new QTimer(this); timer->start(1000); //每隔1000ms发送timeout的信号 connect(timer, SIGNAL(timeout()),this,SLOT(time_update())); } MainWindow::~MainWindow() { delete ui; } void MainWindow::on_actionNew_Window_triggered() { mydialog = new MyDialog; mydialog->show(); } void MainWindow::time_update() { //[1] 获取时间 QDateTime current_time = QDateTime::currentDateTime(); QString timestr = current_time.toString( "yyyy年MM月dd日 hh:mm:ss"); //设置显示的格式 currentTimeLabel->setText(timestr); //设置label的文本内容为时间 }
补充:Qt 通过QLabel控件来显示实时日期时间
头文件需添加:
#include <QTimer>
构造函数中:
//日期/时间显示 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); }
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。
相关文章
使用Python matplotlib绘制简单的柱形图、折线图和直线图
Matplotlib是Python的绘图库, 它可与NumPy一起使用,提供了一种有效的MatLab开源替代方案,下面这篇文章主要给大家介绍了关于使用Python matplotlib绘制简单的柱形图、折线图和直线图的相关资料,需要的朋友可以参考下2022-08-08Python hashlib模块与subprocess模块使用详细介绍
这篇文章主要介绍了Python hashlib模块与subprocess模块使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧2022-10-10python中numpy.zeros(np.zeros)的使用方法
下面小编就为大家带来一篇python中numpy.zeros(np.zeros)的使用方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-11-11
最新评论