PyQt5 – 如何改变标签文本的字体和大小
标签 是一个图形控制元素,在表单中显示文本。一个标签通常用于识别附近的文本框或其他小部件。有些标签可以对鼠标点击等事件作出反应,允许复制标签的文本,但这不是标准的用户界面做法。
在这篇文章中,我们将看到如何改变Label中文本的字体和大小,我们可以通过使用setFont()方法来做到这一点。
语法: label.setFont(QFont(font_name, size))
参数: 它需要两个参数:
1.字体名称,可以是 “Arial”、”Times “等。
2.要设置的字体大小为整数。
下面是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())
输出 :