PyQt5: establece el tamaño máximo para el ancho o la altura de la ventana

Cuando creamos una ventana, por defecto el tamaño de la ventana es redimensionable, aunque podemos usar setMaximumSize()el método para establecer el tamaño máximo de la ventana. Pero, ¿qué pasa si queremos establecer la longitud máxima solo para el ancho o la altura? Para hacerlo, usamos un método setMaximumWidth()para setMaximumHeight()establecer el ancho/alto máximo. Cuando usamos este método, la otra longitud será variable, es decir, no habrá una longitud máxima, se puede estirar al tamaño de la pantalla.

Sintaxis:

self.setMaximumWidth(width)
self.setMaximumHeight(height)

Argumento: Ambos toman enteros como argumento.

Acción realizada:
setMaximumWidth() establece el ancho máximo.
setMaximumHeight()establece la altura máxima.

Código para ancho máximo –

# importing the required libraries
  
from PyQt5.QtCore import * 
from PyQt5.QtGui import * 
from PyQt5.QtWidgets import * 
import sys
  
  
class Window(QMainWindow):
    def __init__(self):
        super().__init__()
  
        # set the title
        self.setWindowTitle("Python")
  
        width = 200
  
        # setting the maximum width
        self.setMaximumWidth(width)
  
        # creating a label widget
        self.label_1 = QLabel("Maximum width", self)
  
        # moving position
        self.label_1.move(0, 0)
  
        # setting up the border
        self.label_1.setStyleSheet("border :3px solid black;")
  
        # resizing label
        self.label_1.resize(120, 80)
  
        # show all the widgets
        self.show()
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

Salida :

 
Código para altura máxima –

# importing the required libraries
  
from PyQt5.QtCore import * 
from PyQt5.QtGui import * 
from PyQt5.QtWidgets import * 
import sys
  
  
class Window(QMainWindow):
    def __init__(self):
        super().__init__()
  
  
        # set the title
        self.setWindowTitle("Python")
  
        height = 200
  
        # setting the maximum height
        self.setMaximumHeight(height)
  
  
        # creating a label widget
        self.label_1 = QLabel("Maximum height", self)
  
        # moving position
        self.label_1.move(0, 0)
  
        # setting up the border
        self.label_1.setStyleSheet("border :3px solid black;")
  
        # resizing label
        self.label_1.resize(120, 80)
  
        # show all the widgets
        self.show()
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

Producción :

Publicación traducida automáticamente

Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *