Dear All,
how to increase the QCheckbox indicator size in the QListwidget.?
listwidget->setCheckState(Qt::Unchecked);
with use of this i am adding the check box in my QListwidget but default size of Checkbox size is very low
how to change checkbox indicator size in Qlistwidget?
with use of below code we can possible to increase the indicator size of checkbox through UI stylesheet
QCheckBox
{
spacing: 5px;
font: 75 9pt "MS Shell Dlg 2";
}
QCheckBox::indicator
{
width: 30px;
height: 40px;
}
but i need change in Listwidget how ? any one have idea about this?

Reply With Quote


