我的项目中有2个文件:
main.py

#!/usr/bin/python3
# -*- coding: utf-8 -*-
import sys
from PyQt5.QtWidgets import (QWidget, QPushButton, QApplication)
from styles import styles

class MyApp(QWidget):
def __init__(self):
    super().__init__()
    self.initUI()

def initUI(self):
    self.setStyleSheet(styles)
    btn1 = QPushButton('Button1', self)
    btn1.resize(btn1.sizeHint())
    btn1.move(50, 50)
    btn2 = QPushButton('Button2', self)
    btn2.resize(btn2.sizeHint())
    btn2.move(100, 100)
    self.show()


if __name__ == '__main__':
    app = QApplication(sys.argv)
    my = MyApp()
    sys.exit(app.exec_())


和styles.py:

styles="QPushButton#btn2 { background-color: red }"


here所述,这应更改btn2的背景颜色。但是,它什么也不做。怎么了?

styles="QPushButton { background-color: red }"


正常工作(对于QPushButton类的所有实例)。我正在使用PyQt5和Python 3.5

最佳答案

好的,这就是它的工作方式:首先,我必须设置要在样式表中引用的对象的名称。
喜欢:

self.btn2.setObjectName('btn2')


在这之后

styles="QPushButton#btn2 { background-color: red }"


工作正常。

08-24 23:57