QGridLayout with multiple widgets
Solved
General and Desktop
-
wrote on 30 Jul 2020, 22:55 last edited by
Hi,
Is it possible to have more than 1 in a cell in a QGridLayout?
-
Hi
No, its not directly but nothing stop you from creating a new QWidget, add layout to it and then
add 2 other widgets to this placeholder widget, you then insert the placeholder into cell and
it will be manged as one. -
Well you don't even need an extra widget, just a nested layout for the widgets in the cell. You add widgets to some layout and then add that layout to your grid with one of the addLayout() methods.
1/3