PyQt5 – Cómo cambiar el tamaño de la etiqueta | método label.resize

Mientras diseñamos cualquier aplicación GUI (interfaz gráfica de usuario), creamos etiquetas que brindan información, pero a veces puede haber un caso en el que el tamaño de la etiqueta no sea apropiado para el contenido y surja la necesidad de cambiar el tamaño de la etiqueta.

En este tutorial, veremos cómo cambiar el tamaño de la etiqueta en PyQt5. Para ello utilizaremos el resize()método.

Sintaxis: label.resize (ancho, alto)

Argumento: Toma dos números enteros como argumento que son:
1. Ancho a establecer.
2. Altura a configurar.

Código:

# importing the required libraries
  
from PyQt5.QtWidgets import * 
from PyQt5 import QtCore
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
        self.label_1 = QLabel('Normal Label', self)
  
        # moving position
        self.label_1.move(100, 100)
  
        # setting up border
        self.label_1.setStyleSheet("border: 1px solid black;")
  
        # creating a label widget
        self.label_2 = QLabel('====== extra width label =====', self)
  
        # moving position
        self.label_2.move(100, 150)
  
        # setting up border
        self.label_2.setStyleSheet("border: 1px solid black;")
  
        # resizing the widget
        self.label_2.resize(200, 20)
  
        # creating a label widget
        self.label_3 = QLabel('tiny label', self)
  
        # moving position
        self.label_3.move(100, 200)
  
        # setting up border
        self.label_3.setStyleSheet("border: 1px solid black;")
  
        # resizing the widget
        self.label_3.resize(60, 15)
  
  
  
        # 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 :
pyqt-resize-label-label.resize

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 *