gpt4 book ai didi

qt - 带有空文本的 QPushButton 的 QStyleSheet 属性

转载 作者:行者123 更新时间:2023-12-02 01:46:44 28 4
gpt4 key购买 nike

我正在尝试做这样的事情:

QPushButton[text=""] {
background-color: rgb(255, 0, 0);
}

QPushButton {
background-color: rgb(0, 0, 0);
}

基本上,我的一些 QPushButtons 有文本,而有些则没有,我想设置与不执行的不同的样式。

如果我打开一个实际的字符串值,这会起作用,即

QPushButton[text="Ok"] {
background-color: rgb(255, 0, 0);
}

然后所有显示“Ok”的按钮都有红色背景。但是我应该为没有文本的按钮传递什么?

最佳答案

此样式表适用于我(Linux、Qt 5.3):

QPushButton[text] {
background-color: "green";
}

QPushButton[text="some text"] {
background-color: "red";
}

QPushButton {
background-color: "blue";
}

关于qt - 带有空文本的 QPushButton 的 QStyleSheet 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25207859/

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