En este artículo, veremos cómo dejar de cambiar el tamaño de la ventana principal. Al crear una ventana, tenemos opciones como ir a pantalla completa y usar el cursor para cambiar su tamaño. Al usar setFizedSize()
el método podemos evitar el cambio de tamaño de la imagen.
Sintaxis: self.setFixedSize(ancho, alto)
Argumento: Toma dos enteros como argumento, es decir, ancho y alto.
Acción realizada: Establece el tamaño fijo de la ventana.
Código:
# 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 height = 400 # setting the fixed size of window self.setFixedSize(width, height) # creating a label widget self.label_1 = QLabel("Fixed size window", self) # moving position self.label_1.move(100, 100) # 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