所以我有这个QFrame
是父小部件(this
在代码中表示)。在这个小部件中,我想将 a 放置QWidget
在距顶部 10 像素的位置(距底部 10 像素,因此它的高度为 140 像素,而父级为 160 像素)。QWidget
它将在其内部以垂直布局的滚动区域中有许多自定义按钮,因此当按钮组合的高度超过高度QWidget's
(140px)时,滚动会自动设置。因为滚动不是针对整个父widget,而只是针对子widget,所以这里的滚动应该只适用于子widget。这是我的代码:
//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);
与我的预期相反,这就是我得到的(附图)。我做错了什么,我该如何解决?