PyQt5 – 如何自动调整标签的大小|调整QLabel的大小
在设计GUI(图形用户界面)应用程序时,需要将纯文本作为信息显示在标签上,但有时信息文本可能很大或很小,使用resize()方法很困难,所以必须根据文本自动调整标签的大小,为了做到这一点,可以使用调整尺寸()方法。
adjustSize()方法将根据文本的长度来改变标签的大小,如果长度较小,它将减少小部件的长度和高度,反之亦然。
语法: label.adjustsize()
参数: 它不需要参数。
代码。
# 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())
输出 :