gpt4 book ai didi

qt - 平面 QPushButton,背景颜色不起作用

转载 作者:行者123 更新时间:2023-12-04 10:16:01 29 4
gpt4 key购买 nike

我创建了 QPushButton在带有此样式表的 Qt Designer 中:

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 ?

最佳答案

对于问题的第二部分:不要使用“平面”属性,而是修改样式表以实现平面外观,可能如下所示:

QPushButton#pushButton { 
background-color: #ffffff;
border: 0px;
}
/* ... plus the rest of your stylesheet ... */

关于“为什么不起作用”部分?根据我的经验,小部件的样式表和非样式表选项混合会产生许多难以解释的神秘效果。我已经放弃问“为什么”了。

关于qt - 平面 QPushButton,背景颜色不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34654545/

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