35

这是我的软件的打印屏幕:

如您所见,第一个QTableVIew标题不会占用 100% 的宽度。实际上,字段右侧有一个小的垂直空白区域size

如何让标题占据 100% 的宽度QTableView

4

4 回答 4

52

如果您使用的是 Qt 5,QHeaderView::setResizeMode()则不再可用。相反,您可以使用QHeaderView::setSectionResizeMode()

ui->tableView->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);

或者只是为每一列调用它:

for (int c = 0; c < ui->tableView->horizontalHeader()->count(); ++c)
{
    ui->tableView->horizontalHeader()->setSectionResizeMode(
        c, QHeaderView::Stretch);
}
于 2013-07-08T21:45:51.050 回答
24

用于view->horizontalHeader()->setStretchLastSection(true)使最后一列扩展到可用空间。

此外,用于view->horizontalHeader()->setResizeMode(QHeaderView::Stretch)赋予列相同的宽度。

于 2013-07-08T20:43:29.613 回答
14

这里仅适用于:

ui->tableView->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);

我正在使用 Qt 5.2!

于 2014-03-26T20:11:05.647 回答
0

我很难在表格的所有单元格之间分配列宽。就我而言,在模型的 headerData 函数中,我执行了以下操作(需要在某处调用resizeColumnsToContents () ):

QVariant headerData(int section, Qt::Orientation orientation, int role) const override {
  if (orientation == Qt::Vertical) {
    return QVariant();
  }
  if (role == Qt::SizeHintRole) {
    auto* p = qobject_cast<QTableView*>(QObject::parent());
    if (p == nullptr) return QVariant();
    // Parent total width.
    const int w = p->viewport()->size().width() -
        p->verticalScrollBar()->sizeHint().width();
    QSize qs;
    // Default height.
    qs.setHeight(p->verticalHeader()->defaultSectionSize());
    // Width per column.
    switch (section) {
      case 0:
        qs.setWidth(w * 0.45);
        return QVariant(qs);
      case 1:
        qs.setWidth(w * 0.45);
        return QVariant(qs);
      // ... others
      default: ;
    }
    return QVariant();
  }
  if (role == Qt::DisplayRole) {
    // header titles.
  }
}
于 2017-09-10T16:01:21.230 回答