PyQt5: ¿cómo agregar relleno a una etiqueta?

En este artículo, veremos cómo agregar relleno a nuestra etiqueta. El relleno es solo el espacio entre el borde y el contenido. A continuación se muestra la imagen de la etiqueta que ayudará a comprender mejor el relleno.

Para agregar relleno a nuestra etiqueta, usaremos el setStyleSheet()método, a continuación se muestra cómo se ve la etiqueta sin relleno frente a la etiqueta con relleno.

Sintaxis: label.setStyleSheet(“relleno:15px”)

Argumento: Toma una string como argumento.

Acción realizada: Agrega relleno a la etiqueta.

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")
  
        # setting  the geometry of window
        self.setGeometry(60, 60, 600, 400)
  
  
        # creating a label widget
        self.label_1 = QLabel("===============", self)
  
        # moving position
        self.label_1.move(100, 100)
  
        # setting up the border
        self.label_1.setStyleSheet("border :3px solid blue;")
  
        # resizing label
        self.label_1.resize(100, 100)
        # creating a label widget
        self.label_2 = QLabel("==================", self)
  
        # setting up the border and adding padding
        self.label_2.setStyleSheet("border :3px solid blue;padding :15px")
  
        # moving position
        self.label_2.move(230, 200)
  
        # resizing the label
        self.label_2.resize(100, 100)
  
        # 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *