QT中Treewidget item前的checkbox问题
如图,现在我能实现将treeWidgetItem 前显示出checkBox,但是做出选择之后,我需要把这个checkBox去掉,就是还原到原来的样子,请问应该怎么实现,我左找右找都找不到实现的方法,求大神帮助我。 Qt CheckBox TreeWidgetItem
[解决办法]
QList<QCheckBox *> listCheckBox = yourTreeWidget->findChildren<QCheckBox *>();
foreach (QCheckBox *pCheckBox, listCheckBox)
{
pCheckBox->setVisible(false);
}