0

我正在开发一个示例应用程序,我需要在未选中复选框时禁用复选框的文本并在选中时启用它。

代码:

if(ui->checkBox->isChecked() == true)
{
   // Enable the text of the checkbox
}

else
{
   // Disable the text of the checkbox      
}

我浏览了各种文章,但没有找到正确的解决方案。

4

2 回答 2

1

使用样式表

对于您的所有小部件:

ui->setStyleSheet(
"QCheckBox:checked {
     {color: black;}
 }
 QCheckBox:unchecked {
     {color: grey;}
 }"
)

编辑:

如评论中所述,要使其与自定义主题一起使用,您可以使样式查询调色板

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);

请注意,我没有尝试过,它可能有任何错字,但你明白了。

于 2013-04-24T11:13:37.650 回答
0

我得到了解决方案。这就是我实现它的方式:

ui->checkBox->setStyleSheet( "QCheckBox:checked{color: black;} QCheckBox:unchecked{color: grey;}");
于 2013-04-24T11:27:49.720 回答