Qt 6.11 is out! See what's new in the release
blog
How to add slider in QGridLayout?
-
As any other widget: http://doc.qt.io/qt-5/qgridlayout.html#addWidget
layout->addWidget(slider,row,column); -
Hi,
As Slider is a widget u can use addWidget() method to add it for QGridLayout,
Thanks,