2010-03-17 103 views

回答

1

我想你應該擴展QCalendar類並添加一些行爲!

我發現這裏的東西:http://www.qtforum.org/article/21614/paintcell-and-qcalendarwidget.html#post79008

正如你所看到的例子,你可以使用類似:

QBrush brush; 
brush.setColor(Qt::green); 
QTextCharFormat cf = calendarWidget->dateTextFormat(date); 
cf.setBackground(brush); 
calendarWidget->setDateTextFormat(date, cf); 

希望它可以幫助一點!