14

以下是我目前尝试过的。标题文本正确更改颜色,但背景不会更改默认值。

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);
    }
    //...
}

如何设置背景颜色?

4

2 回答 2

28

您可以在 QTableView 上设置样式表

ui->tableView->setStyleSheet("QHeaderView::section { background-color:red }");

有关更多信息,请参阅http://doc.qt.io/qt-4.8/stylesheet-examples.html

于 2012-07-12T16:29:08.673 回答
2

这是一个替代解决方案。

MyTableView::MyTableView( QWidget* parent ) : QTableView( parent )
{
    ...
    // Make a copy of the current header palette.
    QPalette palette = horizontalHeader()->palette();

    // Set the normal/active, background color
    // QPalette::Background is obsolete, use QPalette::Window
    palette.setColor( QPalette::Normal, QPalette::Window, Qt::red );

    // Set the palette on the header.
    horizontalHeader()->setPalette( palette );
}
于 2012-07-12T16:47:03.743 回答