Chris P
Chris P

Reputation: 2357

Maximaze window from qt designer

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

Answers (1)

eyllanesc
eyllanesc

Reputation: 244282

TL;DR; No, it is not possible.


Qt Designer is used to:

  • Configure the qproperties of QWidgets.
  • Make connections between widgets.
  • Edit some properties of the QActions.
  • Create and modify qresource.

And in none of these possibilities does it involve method showMaximized.

Upvotes: 1

Related Questions