gpt4 book ai didi

qt - QRadioButton 颜色在选定和取消选定的 Qt 上发生变化

转载 作者:行者123 更新时间:2023-12-04 12:59:33 26 4
gpt4 key购买 nike

我正在尝试将选中和取消选中的单选按钮的颜色更改为
Qt 样式表:Qt Stylesheet
但在此链接中,它仅指加载图像,但我如何更改它的颜色而不加载图像并更改边框颜色或样式单选按钮
要求附在图片中:
RadioButtonRequiredImage

最佳答案

阅读 documentation小心。它描述了您需要的一切。它甚至几乎described您的情况,唯一的区别是图像而不是颜色。

您的案例的样式表是这样的:

QRadioButton {
background-color: gray;
color: white;
}

QRadioButton::indicator {
width: 10px;
height: 10px;
border-radius: 7px;
}

QRadioButton::indicator:checked {
background-color: red;
border: 2px solid white;
}

QRadioButton::indicator:unchecked {
background-color: black;
border: 2px solid white;
}

关于qt - QRadioButton 颜色在选定和取消选定的 Qt 上发生变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38714925/

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