gpt4 book ai didi

colors - pyQt QPushButton 颜色

转载 作者:行者123 更新时间:2023-12-04 14:34:54 30 4
gpt4 key购买 nike

使用 pyQt 4.8.5 在 Python 2.7 中编写:pyQt QPushButton 小部件的默认背景颜色是什么?我可以将颜色设置为绿色,但不能将其恢复为默认颜色。我的意思的快照:

enter image description here

函数对此负责:

def StartTransmit(self):
self.ui.Transmit.setStyleSheet("background-color: green")**
# self.ui.Transmit.setStyleSheet("background-color: DEFAULT <later on>")
self.number = random.randint(1,10)
self.ui.lcd.display(self.number)
self.timer.start(1000)

最佳答案

答案是“浅灰色”,例如:

def StartTransmit(self):
self.ui.Transmit.setStyleSheet("background-color: green")
self.timer.start(1000)

def StopTransmit(self):
self.ui.Transmit.setStyleSheet("background-color: light gray")
self.timer.stop()

关于colors - pyQt QPushButton 颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23856309/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com