Qt - 在QVBoxLayout中重叠标签

时间:2017-05-08 23:17:20

标签: c++ qt

我正试图让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中实现重叠标签吗?

1 个答案:

答案 0 :(得分:1)

不,您无法在QVBoxLayout中实现重叠标签。