我想更改QCheckBox
旁边的文字颜色。
我试过这两个问题:
how to change QCheckBox text label color in Qt?
这些解决方案似乎都不适合我。
p = QtGui.QPalette(self.chkbox[i].palette())
p.setColor(QPalette.Active,QPalette.WindowText, QtCore.Qt.red)
self.top_grid.addWidget(self.chkbox[i],i+2,0)
编辑1:以下是最小工作代码:
from PyQt4 import QtGui, QtCore
import sys
def main():
app = QtGui.QApplication(sys.argv)
w = QtGui.QWidget()
top_grid = QtGui.QGridLayout()
chkbox=[]
chkbox.append(QtGui.QCheckBox('1'))
chkbox[0].setStyleSheet("color: red")
chkbox[0].setToolTip('<b>ABC</b>' )
top_grid.addWidget(chkbox[0],0,0)
w.setLayout(top_grid)
w.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
当我这样做时,ToolTip
的颜色会变为红色,但复选框旁边的文字仍为黑色。
修改2:如果我添加了
行app.setStyle('cleanlooks')
有效。默认样式为sgi
,由于某种原因,文本颜色不会更改。它适用于所有其他风格。
答案 0 :(得分:0)
您可以使用样式表来执行此操作:
for chbox in self.chkbox:
chbox.setStyleSheet("color: red")