PyQt5按钮背景颜色不生效

时间:2018-01-16 09:24:08

标签: python pyqt5

这是按钮的代码:

    self.pushButton.setFont(font)
    self.pushButton.setStyleSheet("background-color: qlineargradient(spread:pad, x1:0.0568182, y1:0.126, x2:0.75, y2:0.227, stop:0.0738636 rgba(0, 255, 0, 255), stop:0.840909 rgba(0, 136, 0, 255));\n")
    self.pushButton.setFlat(True)
    self.pushButton.setObjectName("pushButton")

虽然我为此按钮设置了背景渐变,但它没有生效。

这是正常的按钮:

enter image description here

这是按下它的时候:

enter image description here

1 个答案:

答案 0 :(得分:2)

确定。它已经解决了。

问题是,我使用的是背景色,但是背景:#fff 可以解决问题。