PyQt5 – 如何改变标签的大小 | label.resize方法

PyQt5 – 如何改变标签的大小 | label.resize方法

在设计任何GUI(图形用户界面)应用程序时,我们会创建提供信息的标签,但有时可能会出现标签的大小与内容不相称的情况,这时就需要调整标签的大小了。

在本教程中,我们将看到如何在PyQt5中改变标签的大小。为此,我们将使用resize()方法。

语法: label.resize(width, height)

参数: 它需要两个整数作为参数,它们是:

1.要设置的宽度。

2.要设置的高度。

代码。

# 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())

输出 :

PyQt5 - 如何改变标签的大小  label.resize方法

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程