Reputation: 2357
Every time i change something in .ui file from qt designer, then i compile with pyuic5 command.
Then i put MainWindow.showMaximized()
instead of MainWindow.show()
command.
Is there any way to do it from Qt Designer?
Upvotes: 1
Views: 318
Reputation: 244282
TL;DR; No, it is not possible.
Qt Designer is used to:
And in none of these possibilities does it involve method showMaximized
.
Upvotes: 1