以下是我目前尝试过的。标题文本正确更改颜色,但背景不会更改默认值。
template<typename T>
inline QVariant TableModel<T>::headerData(int section, Qt::Orientation orientation, int role) const
{
//...
else if(role == Qt::BackgroundRole) {
return QBrush(m_display.headerBackground);
}
//...
}
如何设置背景颜色?