作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 QDateTimeEdit 中,可以使用 setDisplayFormat(const QString &format)
按字符串设置格式,但我看不到接收 Qt::DateFormat
枚举的函数,而不是字符串。
我的目标是根据用户区域设置设置 QDateEdit 格式。也许可以在 fromString
和 toString
中获取用于 Qt::SystemLocaleShortDate 的字符串格式,但我找不到它。
最佳答案
您可以使用此代码设置显示格式。
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QDateTimeEdit w;
QLocale currentLocale = QLocale::system();
w.setDisplayFormat( currentLocale.dateFormat( QLocale::ShortFormat ) + " " + currentLocale.timeFormat( QLocale::ShortFormat ) );
w.setDateTime( QDateTime::currentDateTime() );
w.show();
a.exec();
}
关于c++ - 如何在 QDateTimeEdit 中使用 Qt::SystemLocaleShortDate?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40236962/
我是一名优秀的程序员,十分优秀!