我有以下代码:
self.pushButton = QtGui.QPushButton(Form)
self.pushButton.setGeometry(QtCore.QRect(0, 550, 150, 31))
self.pushButton.setObjectName(_fromUtf8("pushButton"))
如何更改此按钮的背景色。我试过使用调色板,但没有成功。我想要红色的。我好像说得不对。任何帮助都会很好。
最佳答案
您可以更改按钮的样式:
self.pushButton.setStyleSheet("background-color: red")
就像CSS。
关于python - PyQt QPushButton背景颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20668060/