我试图使标签在QVBoxLayout中彼此重叠,如下所示:

this->layout = new QGridLayout;
this->layout->addLayout(new QVBoxLayout, 1, 0);

for (int j = 0; j < 7; j++) {
    ClickableLabel *label = new ClickableLabel();

    auto stack = this->layout->findChildren<QVBoxLayout*>();
    stack[0]->addWidget(label);
    stack[0]->setAlignment(Qt::AlignTop);

    button->setGeometry(10000, 100, 0, 0);
}


现在setGeometry什么也不做。所以我的问题是:我可以在QVBoxLayout中实现重叠标签吗?

最佳答案

不,您不能在QVBoxLayout中实现重叠的标签。

09-06 16:58