Una etiqueta es un elemento de control gráfico que muestra texto en un formulario. Una etiqueta generalmente se usa para identificar un cuadro de texto cercano u otro widget. Algunas etiquetas pueden responder a eventos como clics del mouse, lo que permite copiar el texto de la etiqueta, pero esta no es una práctica estándar de la interfaz de usuario.
En este artículo, veremos cómo cambiar la fuente y el tamaño del texto en Label, podemos hacerlo usando el setFont()
método.
Sintaxis: label.setFont(QFont(font_name, size))
Argumento: Se necesitan dos argumentos:
1. El nombre de la fuente puede ser ‘Arial’, ‘Times’, etc.
2. El tamaño se establecerá en un número entero.
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('Arial font', self) # moving position self.label_1.move(100, 100) # setting font and size self.label_1.setFont(QFont('Arial', 10)) # creating a label widget # by default label will display at top left corner self.label_2 = QLabel('Times font', self) # moving position self.label_2.move(100, 120) # setting font and size self.label_2.setFont(QFont('Times', 10)) # 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