Is it possible to create a GUI in C++/Qt that will stretch seamless across the screen? I don't refer to a rearrangement of the GUI elements (buttons/text etc..), I mean a complete change in the aspect ratio of the GUI as it were a plain image.
Asked
Active
Viewed 211 times
0
-
1possible duplicate of http://stackoverflow.com/questions/1499062/scalable-painting-of-a-qt-application – dowhilefor Nov 09 '12 at 11:52
1 Answers
2
Qt used size policies Qt doc to define how the GUIs resize. Set the elements to QSizePolicy::Expanding that should consume the extra space.

JustMaximumPower
- 1,257
- 3
- 11
- 22