我正试图让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
中实现重叠标签吗?
答案 0 :(得分:1)
不,您无法在QVBoxLayout
中实现重叠标签。