Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a problem and I hope that you can help me. I want to create a Combobox of Checkboxes on Qt Creator. This is my code

mod = new QStandardItemModel(1,0);
QStandardItem *item;
item = new QStandardItem("First");
item->setCheckable(true);
mod->setItem(0,item);
item = new QStandardItem("Second");
item->setCheckable(true);
mod->setItem(1,item);
ui->comboBox->setModel(mod);

I built this code but in combobox are no checkboxees. Someone on the web told me that I have to use the event. Can you help me?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
243 views
Welcome To Ask or Share your Answers For Others

1 Answer

you only have to set an initial checkState additonally

item->setCheckState(Qt::CheckState state);

e.g.

item->setCheckState(0);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...