Qt实现日期时间日历显示

今天继续学习《Qt实战一二三》,@博主一去丶二三里

Qt之QDateTime

https://blog.csdn.net/liang19890820/article/details/52387275

记得加上布局就没问题了!

Qt实现日期时间日历显示_第1张图片

另外加上@博主一去丶二三里

https://blog.csdn.net/liang19890820/article/details/52400160

分享的QDateEdit和QDateTime使用过程可能遇到的

QDateEdit用于编辑日期,而QTimeEdit用于编辑时间。所以不要用QDateEdit来设置或获取时间,也不要用QTimeEdit来设置或获取日期。如果要同时操作日期时间,请使用QDateTimeEdit。

QDateEdit *dateEdit = new QDateEdit(this);

QTimeEdit *timeEdit = new QTimeEdit(this);

// 错误(语法正确)

dateEdit->setDisplayFormat("yyyy/MM/dd HH:mm:ss");

timeEdit->setDisplayFormat("yyyy/MM/dd HH:mm:ss");
// 设置日期时间

dateEdit->setDateTime(QDateTime::currentDateTime());

timeEdit->setDateTime(QDateTime::currentDateTime());

Qt实现日期时间日历显示_第2张图片

可以看到运行结果QDateEdit虽然设置了年月日时分秒,但是只能修改日期,不能修改时间;QTimeEdit是只能修改时间,不能修改日期。

正确就应该是

// 正确    
dateEdit->setDisplayFormat("yyyy/MM/dd");    
timeEdit->setDisplayFormat("HH:mm:ss");

Qt实现日期时间日历显示_第3张图片

 

你可能感兴趣的:(Qt)