我在按钮 pushButton 样式表中使用了它
QPushButton#pushButton {
background-color: yellow;
}
QPushButton#pushButton:pressed {
background-color: rgb(224, 0, 0);
}
QPushButton#pushButton:hover {
background-color: rgb(224, 255, 0);
}
当我将鼠标悬停在它上面时,它会改变颜色,就像我期望的那样,但是即使我按下按钮,悬停颜色仍然存在。我尝试更改顺序,但仍然是同样的问题。Qt 中的小新。