需要在画出的位置上添加几个按钮,方便预览和调整。
我一开使用水平布局,将按键和下拉条水平,在显示但是位置不正确,是需要自己计算位置
还是有方法直接添加到底部
QPushButton *button1 = new QPushButton();
QHBoxLayout *hLayout = new QHBoxLayout(this);
//QPoint point = this->horizontalScrollBar()->pos();
hLayout->addWidget(button1);
hLayout->addWidget(this->horizontalScrollBar());
hLayout->setGeometry(this->horizontalScrollBar()->geometry());