PyQt5 - 创建状态栏的多色边框
当我们创建状态栏的边框时,它具有相同的颜色,即所有的边缘都是相同的颜色。在本教程中,我们将看到如何创建多色边框,即所有边缘都具有不同的颜色。
为此,我们将使用setStyleSheet()
方法。
Syntax :
Argument : It takes string as argument.
Action performed : It changes the color of each border.
代码 :
self.statusBar().setStyleSheet("border :5px solid ;"
"border-top-color : pink; "
"border-left-color :green;"
"border-right-color :blue;"
"border-bottom-color : yellow")
输出 :