📜  PyQt5 |如何创建按钮的彩色边框?

📅  最后修改于: 2022-05-13 01:54:49.498000             🧑  作者: Mango

PyQt5 |如何创建按钮的彩色边框?

在本文中,我们将看到如何创建按钮的彩色边框。默认情况下,按钮有一个按钮,但我们也可以更改边框颜色和大小。 PyQt5 允许我们在样式表的帮助下改变按钮的颜色。

代码 :

button.setStyleSheet("border :5px solid ;"
                     "border-top-color : red; "
                     "border-left-color :pink;"
                     "border-right-color :yellow;"
                     "border-bottom-color : green")

输出 :