c – QScrollArea与QWidget和QVBoxLayout无法正常工作

所以我有这个QFrame,它是父窗口小部件(在代码中由此表示).在这个小部件中,我想将QWidget放置在距离顶部10 px处(从底部10 px,因此它的高度为140px,而父级为160px). QWidget将在垂直布局中的滚动区域内有许多自定义按钮,这样当组合按钮的高度超过QWidget的高度(140px)时,滚动会自动设置.由于滚动不是针对整个父窗口小部件,而是针对子窗口小部件,因此滚动应仅适用于此处的子窗口小部件.这是我的代码:

//this is a custom button class with predefined height and some formatting styles
class MyButton: public QPushButton
{

public:
    MyButton(std::string aText, QWidget *aParent);

};

MyButton::MyButton(std::string aText, QWidget *aParent): QPushButton(QString::fromStdString(aText), aParent)
{
    this->setFixedHeight(30);
    this->setCursor(Qt::PointingHandCursor);
    this->setCheckable(false);
    this->setStyleSheet("background: rgb(74,89,98);   color: black; border-radius: 0px; text-align: left; padding-left: 5px; border-bottom: 1px solid black;");
}

//this is where I position the parent widget first, and then add sub widget
this->setGeometry(x,y,width,160);
this->setStyleSheet("border-radius: 5px; background:red;");

//this is the widget which is supposed to be scrollable
QWidget *dd = new QWidget(this);
dd->setGeometry(0,10,width,140);
dd->setStyleSheet("background: blue;");

QVBoxLayout *layout = new QVBoxLayout();
dd->setLayout(layout);

for (int i = 0; i < fValues.size(); i++)
{
    MyButton *button = new MyButton(fValues[i],dd);
    layout->addWidget(button);
}

QScrollArea *scroll = new QScrollArea(this);
scroll->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
scroll->setWidget(dd);

与我的期望相反,这就是我得到的(附图).我做错了什么,我该如何解决这个问题?

解决方法:

你弄乱了一堆物品.具有可滚动区域的想法是这样的:

>底部是父窗口小部件(例如QDialog)
>在此之上是固定大小的可滚动区域(QScrollArea)
>在这之上是一个大小的小部件(QWidget),通常只有部分可见(它应该比scrollarea大)
>最重要的是布局
>和最后一个:布局管理子项(这里有几个QPushButton)

试试这段代码:

int
main( int _argc, char** _argv )
{
    QApplication app( _argc, _argv );

    QDialog * dlg = new QDialog();
    dlg->setGeometry( 100, 100, 260, 260);

    QScrollArea *scrollArea = new QScrollArea( dlg );
    scrollArea->setVerticalScrollBarPolicy( Qt::ScrollBarAlwaysOn );
    scrollArea->setWidgetResizable( true );
    scrollArea->setGeometry( 10, 10, 200, 200 );

    QWidget *widget = new QWidget();
    scrollArea->setWidget( widget );

    QVBoxLayout *layout = new QVBoxLayout();
    widget->setLayout( layout );

    for (int i = 0; i < 10; i++)
    {
        QPushButton *button = new QPushButton( QString( "%1" ).arg( i ) );
        layout->addWidget( button );
    }

    dlg->show();

    return app.exec();
}

值得一提的是QScrollArea :: setWidgetResizable,它根据内容动态调整子窗口小部件的大小.

结果如下:

上一篇:PyQt5的学习笔记一———基本的窗口控件


下一篇:QWidget跨平台原因分析