我想更改QLCDNumber
Qt Designer 中的背景和数字颜色,我将在我的 Python 程序中使用该设计(GUI)。
有人说,那可以让我在 Qt-Designer 中添加样式表。
QLCDNumber{color:rgb(85, 85, 255);background-color:rgb(0, 170, 255);}
对于背景颜色而不是数字颜色是成功的。
我如何尝试获得数字颜色
谢谢
我不能使用最后两个 setColor(用于浅色边框和深色边框)。我正在使用 pyuic4 工具从 Qt4 Designer 生成 python 代码(用于 GUI)。我将代码添加到我的python代码文件中(以.py而不是.ui结尾)如下
self.palette = self.withpalette.palette()
self.palette.setColor(QtGui.Palette.WindowText,QtGui.QColor(85,85,255))
self.palette.setColor(QtGui.Palette.Background,QtGui.QColor(0,170,255))
self.palette.setColor(QtGui.Palette.Light,QtGui.QColor(255,0,0))
self.palette.setColor(QtGui.Palette.Dark,QtGui.QColor(0,255,0))
self.withpalette.setPalette(self.palette)