PyQt5 – 如何自动调整标签大小 |调整大小 QLabel
在 GUI(图形用户界面)应用程序的设计过程中,需要将纯文本显示为使用标签的信息,但有时信息文本可能会很大或更小,并且很难使用resize()
方法,因此必须根据文本自动调整标签的大小,为此可以使用adjustSize()
方法。
adjustSize()
方法将根据文本的长度改变标签的大小,如果长度小于它会减小小部件的长度和高度,反之亦然。
Syntax : label.adjustSize()
Argument : It takes no argument.
代码 :
# 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("====== Adjusted label =====", self)
# moving position
self.label_2.move(100, 150)
# setting up border
self.label_2.setStyleSheet("border: 1px solid black;")
# adjusting the size of label
self.label_2.adjustSize()
# 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())
输出 :