En este artículo veremos cómo agregar una etiqueta a una barra de estado. Podemos configurar el texto en la barra de estado usando showMessage
el método.
¿Etiqueta y barra de estado?
Una etiqueta es un elemento de control gráfico que muestra texto en un formulario. Suele ser un control estático; sin interactividad. Una etiqueta generalmente se usa para identificar un cuadro de texto cercano u otro widget. Una barra de estado es una barra horizontal, generalmente en la parte inferior de la pantalla o ventana, que muestra información sobre un documento que se está editando o un programa en ejecución.
Para ello realizaremos los siguientes pasos:
1. Crear una etiqueta
2. Agregar texto a la etiqueta
3. Crear objeto de la barra de estado
4. Agregar etiqueta a la barra de estado
Código:
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") # setting the geometry of window self.setGeometry(60, 60, 600, 400) # setting status bar message self.statusBar().showMessage("This is status bar") # setting border and padding with different sizes self.statusBar().setStyleSheet("border :3px solid black;") # creating a label widget self.label_1 = QLabel("Label 1") # setting up the border self.label_1.setStyleSheet("border :2px solid blue;") # adding label to status bar self.statusBar().addPermanentWidget(self.label_1) # 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())
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA