悬停在self.wordButton等上时如何使背景颜色发生变化?像 self.wordButton:hover{}
self.wordButton.setStyleSheet("""
font-size: 15px;
border-radius: 15px;
min-height: 40px;
max-height: 40px;
min-width: 100px;
max-width: 50px;
background-color: #ADD8E6;
border: 1px double #90EE90;
""")
您需要为
hover
具有不同状态的事件设置颜色pressed
(更多信息):QPushButton:hover:pressed
QPushButton:hover:!pressed
例子: