Cuando creamos una etiqueta en PyQt5, podemos ver que no hay bordes como los que existen en los botones pulsadores, en este artículo veremos cómo agregar un borde a la etiqueta.
Para agregar un borde a la etiqueta, usaremos el label.setStyleSheet()
método, esto agregará el borde a la etiqueta, también podemos establecer el grosor y el color del borde.
Sintaxis: label.setStyleSheet(“borde: 1px negro sólido;”)
Argumento: Toma una string como argumento.
Acción realizada: esto creará un borde en la etiqueta con un grosor de 1 px y el color será negro.
A continuación se muestra la implementación de Python:
# importing the required libraries from PyQt5.QtWidgets import * from PyQt5.QtGui import * import sys class Window(QMainWindow): def __init__(self): super().__init__() # set the title self.setWindowTitle("Label") # setting the geometry of window self.setGeometry(0, 0, 400, 300) # creating a label widget # by default label will display at top left corner self.label_1 = QLabel('It is Label 1', self) # moving position self.label_1.move(100, 100) # setting up border self.label_1.setStyleSheet("border: 1px solid black;") # creating a label widget # by default label will display at top left corner self.label_2 = QLabel('It is Label 2', self) # moving position self.label_2.move(100, 200) # setting up border self.label_2.setStyleSheet("border: 3px solid blue;") # 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