PyQt5 – 如何在QLabel上添加边框
当我们在PyQt5中创建Label时,我们可以看到没有像Push Buttons那样的边框,在这篇文章中我们将看到如何为Label添加边框。
为了给Label添加边框,我们将使用label.setStyleSheet()方法,这将为Label添加边框,我们还可以设置边框的厚度和颜色。
语法: label.setStyleSheet(“border: 1px solid black;”)
参数: 它使用字符串作为参数。
执行的操作: 这将在标签上创建一个厚度为1px的边框,颜色为黑色。
下面是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('It is Label 1', self)
# moving position
self.label_1.move(100, 100)
# setting up border
self.label_1.setStyleSheet("border: 1px solid black;")
# creating a label widget
# by default label will display at top left corner
self.label_2 = QLabel('It is Label 2', self)
# moving position
self.label_2.move(100, 200)
# setting up border
self.label_2.setStyleSheet("border: 3px solid blue;")
# 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())
输出 :