Adapting Qt Designer Layout Without Redesigning Entirely
Moved
Unsolved
General and Desktop
-
I have a screen initially designed for a PC (1920x1080), however, I need to adapt that design for a 1024x600 screen. Is it possible to do this in Qt Designer without having to design everything again?
-
Hi and welcome to devnet,
If you positioned everything by hand then you either have to redo that or position your widgets in your code for example in the resizeEvent method.
Otherwise, the recommended way to work is to use layouts which automatically adapts to the size of your widget.
-
2/2