接上一篇
https://blog.csdn.net/z609932088/article/details/80774950
滚动区域实现,
滚动区域可以三成分层
中间层,滚动层
第三层,爸爸层
通过使用setWidget来把第一城放到第二层中
新建滚动区域的时候的爸爸,就是第三城
上代码
QScrollArea *scrollArea = new QScrollArea(ui->widget_main); scrollArea->setGeometry(0,10,ui->widget_main->width()-10,ui->widget_main->height()); showWidgt = new QWidget(ui->widget_main); showWidgt->setGeometry(0,ui->widget_main->width(),ui->widget_main->height()); showWidgt->setLayout(flowLayout); scrollArea->setStyleSheet("QScrollArea {background-color:transparent;border: none;}"); scrollArea->viewport()->setStyleSheet("background-color:transparent;"); showWidgt->show(); scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); scrollArea->setWidget(showWidgt);