我有一个QMainWindow。
在QMainWindow中,我有一个中央部件。
对于中央窗口小部件,我有一个QVBoxLayout。
对于这个QVBoxLayout,我添加了3个小部件。一个是带有一些标签的小部件,它有一个QGridLayout。另一个是水平线。
第三个是QTableView。问题在于,当我尝试扩展QMainWwindow时,无论我设置(或不设置)任何调整大小策略,TableView都不会扩展,并且在扩展的QMainWindow的其余部分留下了一个笨拙的空白区域。
任何人都可以告诉我如何在调整Window大小时使表格展开/调整大小。
以下是相关代码。
`
statInfoWidget = new Static_Info(TagN);
QWidget *widget = new QWidget;
setCentralWidget(widget);
QFrame *hor_line = new QFrame();
hor_line->setFrameShape( QFrame::HLine );
QVBoxLayout *layout = new QVBoxLayout();
layout->setMargin(2);
layout->addWidget(statInfoWidget);
layout->addWidget( hor_line );
Table = new QTableView(this);
temp = Table;
t = new TableLayout(statInfoWidget);
Table->setModel(t);
Table->verticalHeader()->hide();
Table->horizontalHeader()->hide();
Table->setShowGrid(false);
Table->setContextMenuPolicy(Qt::CustomContextMenu);
//Table->setColumnWidth(2,290);
// Table->setColumnWidth(0,25);
// if(num_version == 1)
// Table->setColumnWidth(1,0);
// else
// Table->setColumnWidth(1,43);
// Table->setColumnWidth(3,210);
// Table->setColumnWidth(4,170);
// Table->setColumnWidth(5,50);
statInfoWidget->setStyleSheet("background: rgb(153,185,193);color:rgb(0,0,0); font-family:Tahoma;font-size:19px; border: 0px outset rgb(255,255,255);gridline-color: #669933;"
"selection-background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #486909, stop: 1 white);");
Table->setStyleSheet("background: rgb(153,185,193);color:rgb(0,0,0); font-family:Tahoma;font-size:15px; font-weight:bold; border: 0px outset rgb(255,255,255);gridline-color: #669933;"
"selection-background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 transparent, stop: 1 white);");
// layout->addWidget(button1);
QSizePolicy policy = Table->sizePolicy();
policy.setVerticalStretch(1);
policy.setHorizontalStretch(1);
Table->setSizePolicy(policy);
layout->addWidget(Table);
widget->setLayout(layout);
`
答案 0 :(得分:2)
您可以考虑以下事项:
Table->horizontalHeader()->setResizeMode(QHeaderView::Stretch);
您可能还希望只调整表中的一个列,这可以通过传递列索引来完成:
Table->horizontalHeader()->setResizeMode(columnIndex, QHeaderView::Stretch);