Python Forum
[PyQt] Resize button with window resize
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[PyQt] Resize button with window resize
#2
You have to set the vertical policy for your button (either as minimum or expanding):
        sizePolicy = QSizePolicy(QSizePolicy.Minimum, QSizePolicy.Minimum)
        self.quitButton.setSizePolicy(sizePolicy)
When you want to change the layout but don't know where to start, a trick is to mess in QtDesigner until you find the right setting. Then save the ui file, convert it to python and see how it is done :)

As for the constructive critisism, you should avoid wildcard in imports as it is considered bad practice:
from PyQt5.QtWidgets import *
And always use explicit inheritances, such as:
        sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
It makes it clear on which module your application rely, and avoid name collision.
Reply


Messages In This Thread
Resize button with window resize - by FesterJester - Dec-02-2018, 10:55 AM
RE: Resize button with window resize - by Alfalfa - Dec-02-2018, 04:48 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Interaction between Matplotlib window, Python prompt and TKinter window NorbertMoussy 3 540 Mar-17-2024, 09:37 AM
Last Post: deanhystad
  Centering and adding a push button to a grid window, TKinter Edward_ 15 4,906 May-25-2023, 07:37 PM
Last Post: deanhystad
  [Tkinter] Clicking on the button crashes the TK window ODOshmockenberg 1 2,258 Mar-10-2022, 05:18 PM
Last Post: deanhystad
  [PyQt] Can't get MDIarea to resize automatically with Main Window JayCee 4 3,498 Aug-02-2021, 08:47 PM
Last Post: JayCee
  how to resize image in canvas tkinter samuelmv30 2 17,828 Feb-06-2021, 03:35 PM
Last Post: joe_momma
Question closing a "nested" window with a button in PySimpleGUI and repeating this process Robby_PY 9 13,638 Jan-18-2021, 10:21 PM
Last Post: Serafim
  Closing window on button click not working kenwatts275 4 3,811 May-03-2020, 01:59 PM
Last Post: deanhystad
  [PyQt] dynamically resize custom widget fill remaining space ironcthulhu 1 11,363 Dec-31-2019, 09:45 PM
Last Post: Denni
  8 image grid with automatical image resize by screen resolution AlexanderO 3 6,982 Dec-29-2019, 02:20 PM
Last Post: Xavier_Roga
  [PySimpleGUI] error trying to resize Text element skratt 3 8,077 Dec-10-2019, 06:05 PM
Last Post: FullOfHelp

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020