Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发自己的小部件,它是一种树视图,但我面临一个小问题:我的项目是 QPushButtons,它们位于 QFrame 中,它位于 scrollArea 中。当我部署我的项目时,滚动条不会出现,我也无法使用我的滚轮。我试图动态更改我的 QFrame 的大小,但它不起作用。我在网上搜索过,但没有找到任何真正好的答案。
我的小部件
我的用户界面
如果有人有解决问题的线索,我很感兴趣!
谢谢 !
终于找到了解决方案:
ui->scrollArea->setWidgetResizable(true); QGridLayout *gridLayout = new QGridLayout(ui->scrollAreaWidget); ui->frame->setFixedHeight(ui->scrollArea->height()); gridLayout->addWidget(ui->frame,0,0,1,1);
并在我部署节点时更改 fixedHeight