En este artículo, veremos cómo usar close()
el método que pertenece a QWidget class
, este método se usa para cerrar la ventana en la aplicación PyQt5. En otras palabras, por close()
método, la ventana se cierra sin cerrarla manualmente.
Sintaxis: self.close()
Argumento: No requiere argumento.
Código:
# importing the required libraries from PyQt5.QtWidgets import * from PyQt5 import QtCore from PyQt5 import QtGui import sys import time class Window(QMainWindow): def __init__(self): super().__init__() # set the title self.setWindowTitle("Close") # setting the geometry of window self.setGeometry(0, 0, 400, 300) # creating a label widget self.label = QLabel("Icon is set", self) # moving position self.label.move(100, 100) # setting up border self.label.setStyleSheet("border: 1px solid black;") # show all the widgets self.show() # waiting for 2 second time.sleep(2) # closing the window self.close() # create pyqt5 app App = QApplication(sys.argv) # create the instance of our Window window = Window() # start the app sys.exit(App.exec())
Esto abrirá la ventana y después de 2 segundos cerrará automáticamente la ventana.
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA