Reputation: 179
I would like to let the view of my Application to Enlarge when I'm opening it as Full Screen mode, is there any kind of flag/something similar to put in QT Creator?
Upvotes: 2
Views: 1101
Reputation: 869
It appears you have designed your application to have a fixed size. If you switch to full-screen the size of your window changes, but your controls keep the same positions and dimensions.
You will have to use layouts, so your application adjusts to size changes. Read the Documentation on Layout Management with Qt.
Note that layouts can be applied in code or in design-mode(The bar on top).
Upvotes: 3