PyQt5: establece el tamaño mínimo de la ventana | método setMinimumWidth y setMinimumHeight

Cuando creamos una ventana, por defecto el tamaño de la ventana es redimensionable, aunque podemos usar el método setMinimumSize() para establecer el tamaño mínimo de la ventana. Pero, ¿qué pasa si queremos establecer la longitud mínima solo para el ancho o la altura? Para hacerlo, usamos setMinimumWidth()el método para establecer el ancho mínimo y setMinimumHeight()el método para establecer la altura mínima. Cuando usamos este método, otra longitud será variable, es decir, no habrá una longitud mínima, puede reducirse tanto como sea posible.

Sintaxis:

self.setMinimumWidth(width)
self.setMinimumHeight(height)

Argumento: Ambos toman enteros como argumento.

Acción realizada.
setMinimumWidth()establece el ancho mínimo.
setMinimumHeight()establece la altura mínima.

Código para establecer el ancho mínimo:

# 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
        height = 200
  
        # setting the minimum width
        self.setMinimumWidth(width)
  
        # creating a label widget
        self.label_1 = QLabel("Minimum 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())

Producción :

 
Código para establecer el ancho mínimo:

# 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
        height = 200
  
        # setting the minimum width
        self.setMinimumHeight(height)
  
        # creating a label widget
        self.label_1 = QLabel("Minimum 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 *