PyQt5 – 如何改变标签的颜色
在PyQt5中创建一个Label时,我们可以看到没有背景色。在这篇文章中,我们将看到如何为标签添加背景色。
为了给Label添加边框,我们将使用label.setStyleSheet()方法,这将为Label添加背景色,这与设计CSS样式表是一样的。
语法: label.setStyleSheet(“background-color: cyan”)
参数: 它以字符串作为参数。
执行的操作: 它将改变标签的背景颜色。
代码。
# 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('Light green', self)
# moving position
self.label_1.move(100, 100)
# setting up background color
self.label_1.setStyleSheet("background-color: lightgreen")
# creating a label widget
# by default label will display at top left corner
self.label_2 = QLabel('Yellow', self)
# moving position
self.label_2.move(100, 150)
# setting up background color and border
self.label_2.setStyleSheet("background-color: yellow;
border: 1px solid black;")
# 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())
输出 :