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,
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,