我正在开发一个示例应用,我需要在未选中复选框时禁用复选框的文本,并在选中时启用它。
代码:
if(ui->checkBox->isChecked() == true)
{
// Enable the text of the checkbox
}
else
{
// Disable the text of the checkbox
}
我查看过各种文章,但我找不到合适的解决方案。
答案 0 :(得分:1)
对于您的所有小部件:
ui->setStyleSheet(
"QCheckBox:checked {
{color: black;}
}
QCheckBox:unchecked {
{color: grey;}
}"
)
编辑:
正如评论中所述,为了使其适用于自定义主题,您可以使样式查询palette:
QPalette my_palette = ui->palette()
QColor my_active_color = my_palette.color(QPalette::Active, QPalette::Text);
QColor my_disabled_color = my_palette.color(QPalette::Disabled, QPalette::Text);
QString my_style =
QString("QCheckBox:checked { {color: rgb(%1, %2, %3);} } "
"QCheckBox:unchecked { {color: rgb(%4, %5, %6);}}")
.arg( my_active_color.red())
.arg( my_active_color.green())
.arg( my_active_color.blue() )
.arg( my_disabled_color.red())
.arg( my_disabled_color.green())
.arg( my_disabled_color.blue() );
ui->setStyleSheet(my_style);
请注意,我没有尝试过,它可能有任何错字,但你明白了。
答案 1 :(得分:0)
我得到了解决方案。这就是我实现它的方式:
ui->checkBox->setStyleSheet( "QCheckBox:checked{color: black;} QCheckBox:unchecked{color: grey;}");