Pyqt5 Designer Window Size Question | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Pyqt5 Designer Window Size Question

I open the designer but the window there is way bigger than window when i run it. Is there any way i can fix it?

4th Sep 2020, 6:50 AM
Rei
Rei - avatar
5 Answers
+ 2
Can you explain me your problem in detail? I'm used to PyQT5, so probably I'll be able to help.
4th Sep 2020, 7:22 AM
Charitra
Charitra - avatar
+ 2
Rei See, you cannot do everything with designer. You need to play with the code also. You can set the width and height in code where the size parameters are given, at approximately top 3rd or 4th line in the init function. MainWindow.resize(185, 126) This is the line. here you can change these parameters. First one is width, second one is height. If you dont want your app to change its size when user tries, you can write this. MainWindow.setFixedSize(185, 126) This will prevent the app from resizing, or maximising, that is, dimensions will be fixed. You can check out my projects to have a general knowledge of it. https://github.com/Chiku1022
4th Sep 2020, 7:32 AM
Charitra
Charitra - avatar
+ 1
ok thank you very much
4th Sep 2020, 7:33 AM
Rei
Rei - avatar
0
when i create a form in pyqt5 desiner the window in desiner is way bigger than when i run the code
4th Sep 2020, 7:27 AM
Rei
Rei - avatar
0
i try to change setting but it seems nothing works. Maybe is there any way to zoom out!?
4th Sep 2020, 7:30 AM
Rei
Rei - avatar