如何将具有多个 QPushButtons 50px 的 QVBoxLayout 移动到顶部?
这是我的代码。我试过this->adjustSize(),this->repaint(),但它不动。
// get current geometry
QRect geo = ui->VBoxLayout->geometry();
// apply geometry, but substract 50px from y() to move it to the top
ui->VBoxLayout->setGeometry(
QRect(geo.x(), geo.y() - 50, geo.width(), geo.height())
);