英文:
How to change slider in Qt?
问题
如何将对象的QVBoxLayout滑块设置到末尾?
我希望初始位置像图片中一样,但滑块位于顶部。
英文:
How to set the slider of an object QVBoxLayout to the end?
I want the initial position to be like in the picture, but the slider is at the top.
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
QVBoxLayout* lay = new QVBoxLayout(this);
for (int i = 0; i < 50; ++i) {
QPushButton* button = new QPushButton(QString(i + '0'));
lay->addWidget(button);
}
ui->scrollContents->setLayout(lay);
}
答案1
得分: 3
auto bar = scrollableArea->verticalScrollBar();
bar->setValue(bar->maximum());
英文:
auto bar = scrollableArea->verticalScrollBar();
bar->setValue(bar->maximum());
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论