我有一个小部件,例如QComboBox
。
使用函数setStyleSheet("background:red")
,我可以设置背景。
但我该如何设置颜色呢?我已尝试过"background:gray"
和"background:silver"
,但看起来有所不同。
答案 0 :(得分:2)
您可以完全清除样式表,如下所示:
combobox.setStyleSheet('')
或使用palette-role,如下所示:
combobox.setStyleSheet('background: palette(window)')