Hay tantas opciones proporcionadas por Python para desarrollar una aplicación GUI y PyQt5 es una de ellas. PyQt5 es un kit de herramientas GUI multiplataforma, un conjunto de enlaces de Python para Qt v5. Uno puede desarrollar una aplicación de escritorio interactiva con tanta facilidad debido a las herramientas y la simplicidad que ofrece esta biblioteca.
setGeometry()
El método se utiliza para configurar la geometría de la ventana de PyQt5.
Sintaxis: window.setGeometry(x, y, ancho, alto)
Argumentos: Se necesitan 4 argumentos:
1. Coordenada X
2. Coordenada Y
3. Ancho de la ventana a configurar
4. Alto de la ventana a configurar
A continuación se muestra la implementación de este método.
Código:
# importing the required libraries from PyQt5.QtGui import * from PyQt5.QtWidgets import * import sys class Window(QMainWindow): def __init__(self): super().__init__() # set the title self.setWindowTitle("Geometry") # setting the geometry of window # setGeometry(left, top, width, height) self.setGeometry(100, 60, 1000, 800) # creating a label widget self.widget = QLabel('Hello', self) # 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