0

我需要调整两个表格的标题,彼此靠近,因为标题有不同的文本行。这似乎是不可能的。

请任何帮助!

4

1 回答 1

2

创建一个派生自的类QHeaderView并提供您自己的实现,sizeHint以返回您想要的正确高度。IE

QSize MyCustomHeaderView::sizeHint() const
{
    // Get the base implementation size.
    QSize baseSize = QHeaderView::sizeHint();

    // Override the height with a custom value.
    baseSize.setHeight( 25 );

    return baseSize;
}
于 2012-07-03T16:16:14.410 回答