QT QDateEdit 修改日曆週六日顏色

效果圖:

在這裏插入圖片描述

代碼實現:

QCalendarWidget *pCalendarWidget = ui.dateEditBegin->calendarWidget();
QTextCharFormat f =pCalendarWidget->weekdayTextFormat(Qt::Monday);//獲取週一字體格式
f.setForeground( QBrush(QColor("#0076ed")) );//替換字體顏色
QTextCharFormat weekdays = f;
ui.dateEditBegin->calendarWidget()->setWeekdayTextFormat(Qt::Sunday,weekdays);//設置週六日爲新的字體格式
ui.dateEditBegin->calendarWidget()->setWeekdayTextFormat(Qt::Saturday,weekdays);
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章