问题
I need to draw text in derived from QHeaderView class. But this code does not work.
void HeaderView::paintSection(QPainter *painter, const QRect &, int) const
{
painter->drawText(0, 0, "abcde");
}
回答1:
The documentation says:
Paints the section specified by the given logicalIndex, using the given painter and rect.
That means, you have to use the rect getting as parameter:
void HeaderView::paintSection(QPainter *painter, const QRect& rect, int) const
{
painter->drawText(rect, Qt::AlignCenter, "abcde");
}
来源:https://stackoverflow.com/questions/25500085/how-to-draw-text-in-derived-from-qheaderview-class