Qt:自动添加滚动条到QGroupbox

时间:2017-04-27 13:19:53

标签: c++ qt scrollbar qgroupbox

我想在调整具有此组框的对话框窗口(将其缩小)时自动将滚动条添加到标签组框,以便保持组框内容的相同视图,并在该对话框中滚动查看很小。

QGroupBox* GroupBox = new QGroupBox;
QVBoxLayout *Layout = new QVBoxLayout;   
Layout->addWidget(Label1);
Layout->addWidget(Label2);
Layout->addWidget(Label3);
Layout->addWidget(Label4);
GroupBox ->setLayout(Layout);

我尝试了以下但不起作用。

QScrollArea* scrollArea = new QScrollArea(this);
scrollArea->setWidget(GroupBox);

2 个答案:

答案 0 :(得分:0)

我想分享我找到的问题的答案:答案是添加2个具有2个布局的分组框,并将scrollarea作为窗口小部件添加到第二个布局。 代码将是:

QGroupBox* GroupBoxIn = new QGroupBox;
QVBoxLayout *LayoutIn = new QVBoxLayout;  
QGroupBox *GroupBoxOut = new QGroupBox;   
QVBoxLayout *LayoutOut = new QVBoxLayout;  
QScrollArea* scrollArea = new QScrollArea();

LayoutIn ->addWidget(Label1);
LayoutIn ->addWidget(Label2);
LayoutIn ->addWidget(Label3);
LayoutIn ->addWidget(Label4);

GroupBoxIn ->setLayout(LayoutIn ); 
scrollArea->setWidget(GroupBoxIn );  
scrollArea->setWidgetResizable( true );  
LayoutOut ->addWidget(scrollArea);      
GroupBoxOut ->setLayout(LayoutOut ); 

答案 1 :(得分:0)

我认为“ scrollArea-> setWidgetResizable(true);”绝招,不是双重分组框