PyQt5 – 如何为标签添加填充
在这篇文章中,我们将看到如何为我们的标签添加填充。padding是指边框和内容之间的空间。下面是标签的图片,这将有助于更好地理解填充的含义。
为了给我们的标签添加填充,我们将使用setStyleSheet()方法,下面是没有填充的标签和有填充的标签的样子。
语法: label.setStyleSheet(“padding :15px”)
参数: 它使用字符串作为参数。
执行的操作: 它为标签添加填充物。
代码。
# importing the required libraries
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
import sys
class Window(QMainWindow):
def __init__(self):
super().__init__()
# set the title
self.setWindowTitle("Python")
# setting the geometry of window
self.setGeometry(60, 60, 600, 400)
# creating a label widget
self.label_1 = QLabel("===============", self)
# moving position
self.label_1.move(100, 100)
# setting up the border
self.label_1.setStyleSheet("border :3px solid blue;")
# resizing label
self.label_1.resize(100, 100)
# creating a label widget
self.label_2 = QLabel("==================", self)
# setting up the border and adding padding
self.label_2.setStyleSheet("border :3px solid blue;padding :15px")
# moving position
self.label_2.move(230, 200)
# resizing the label
self.label_2.resize(100, 100)
# 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())
输出 :