calendar = new QCalendarWidget;
calendar->setMinimumDate(QDate(1900, 1, 1));
calendar->setMaximumDate(QDate(3000, 1, 1));

 

QTextCharFormat format;
format.setFontWeight(QFont::Bold);
format.setFontItalic(true);
format.setForeground(Qt::green);

calendar->setHeaderTextFormat(format);

 

相关文章:

  • 2021-12-01
  • 2021-11-16
  • 2022-12-23
  • 2022-12-23
  • 2021-09-27
猜你喜欢
  • 2021-06-30
  • 2022-12-23
  • 2021-08-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案