Cuando creamos una ventana, por defecto, el tamaño de la ventana es redimensionable, aunque podemos usar setFixedSize()
el método para establecer el tamaño fijo de la ventana, pero si queremos establecer solo la longitud fija, la altura o el ancho, no podemos usar este método. Queremos establecer una longitud fija y otra variable para hacerlo, tenemos que usar setFixedWidth()
el método para establecer la longitud fija del ancho y setFizedHeight()
el método para establecer la longitud fija de la altura.
Sintaxis:
self.setFixedWidth(width) self.setFixedHeight(height)Argumento: Ambos toman enteros como argumento.
Acción realizada:
setFixedWidth()
establece el ancho constante.setFixedWidth()
establece la altura constante.
Código para ancho fijo –
# 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 = 500 # setting the fixed width of window self.setFixedWidth(width) # creating a label widget self.label_1 = QLabel("Fixed 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 fija –
# 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 = 400 # setting the fixed height of window self.setFixedHeight(height) # creating a label widget self.label_1 = QLabel("Fixed 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