PyQt5 – Etiqueta multilínea

En este artículo, veremos cómo podemos crear una etiqueta de varias líneas, cuando creamos una etiqueta y le asignamos texto y si la longitud del texto es mayor que la longitud de la etiqueta, el texto adicional no se muestra, se crea una etiqueta de varias líneas. ese texto extra va en la otra línea. A continuación se muestra la representación de cómo se ve una etiqueta normal y de varias líneas

Para ello utilizaremos el setWordWrapmétodo.

Sintaxis: label.setWordWrap(Verdadero)

Argumento: toma bool como argumento

Retorno : Ninguno

A continuación se muestra la implementación.

# importing libraries
from PyQt5.QtWidgets import * 
from PyQt5 import QtCore, QtGui
from PyQt5.QtGui import * 
from PyQt5.QtCore import * 
import sys
  
  
class Window(QMainWindow):
  
    def __init__(self):
        super().__init__()
  
        # setting title
        self.setWindowTitle("Python ")
  
        # setting geometry
        self.setGeometry(100, 100, 600, 400)
  
        # calling method
        self.UiComponents()
  
        # showing all the widgets
        self.show()
  
    # method for widgets
    def UiComponents(self):
  
        # creating label
        label1 = QLabel("Normal label With out multi line", self)
  
        # setting geometry to the label
        label1.setGeometry(200, 150, 100, 50)
  
        # adding border to the label
        label1.setStyleSheet("border : 2px solid black;")
  
        # creating label
        label2 = QLabel("Multi label i.e With multi line", self)
  
        # setting geometry to the label
        label2.setGeometry(200, 250, 100, 50)
  
        # adding border to the label
        label2.setStyleSheet("border : 2px solid black;")
  
        # making it multi line
        label2.setWordWrap(True)
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
window.show()
  
# 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 *