我使用此样式表在Qt Designer中创建了QPushButton
:
QPushButton#pushButton {
background-color: #ffffff;
}
QPushButton#pushButton:disabled {
background-color: yellow;
}
QPushButton#pushButton:pressed {
background-color: orange;
}
QPushButton#pushButton:focus:pressed {
background-color: black;
}
QPushButton#pushButton:focus {
background-color: green;
}
QPushButton#pushButton:hover {
background-color: red;
}
QPushButton#pushButton:checked {
background-color: pink;
}
它有效,但当我检查"扁平"在属性中,它再也不起作用了,我想问你为什么?我怎么能这样做,如果我需要平展QPushButton
?
答案 0 :(得分:11)
对于问题的第二部分:不要使用“flat”属性,而是修改样式表以实现平面外观,可能是这样的:
QPushButton#pushButton {
background-color: #ffffff;
border: 0px;
}
/* ... plus the rest of your stylesheet ... */
关于“为什么不起作用”部分?根据我的经验,为小部件混合样式表和非样式表选项会产生许多难以解释的神秘效果。我已放弃要求“为什么”了。