0

我有一个牢房QGroupBox里面。QTableView由包含两个sQGroupBox的 a 组成。QHBoxLayoutQRadioButton

我已经在布局和组框上尝试了 setContentsMargins,但顶部似乎总是有一个边距/空白。

在此处输入图像描述

QGroupBox *widget = new QGroupBox();
QHBoxLayout *layout = new QHBoxLayout(widget);
QRadioButton *wsRadioButton_ = new QRadioButton( this );
QRadioButton *pfRadioButton_ = new QRadioButton( this );
widget->setContentsMargins( 0, 0, 0, 0 );
layout->setContentsMargins( 10, 0, 0, 0 );
layout->addWidget(pfRadioButton_, Qt::AlignCenter);
layout->addWidget(wsRadioButton_, Qt::AlignCenter);
widget->setLayout(layout);
ui_->fsTableView_->setIndexWidget( model_->index( eModelRows::eRS, eModelCols::min ), widget );
ui_->fsTableView_->resizeRowToContents( eModelRows::eRS );
4

0 回答 0