首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > QT开发 >

QT中Treewidget item前的checkbox有关问题

2013-07-16 
QT中Treewidget item前的checkbox问题如图,现在我能实现将treeWidgetItem 前显示出checkBox,但是做出选择

QT中Treewidget item前的checkbox问题
QT中Treewidget item前的checkbox有关问题
QT中Treewidget item前的checkbox有关问题
如图,现在我能实现将treeWidgetItem 前显示出checkBox,但是做出选择之后,我需要把这个checkBox去掉,就是还原到原来的样子,请问应该怎么实现,我左找右找都找不到实现的方法,求大神帮助我。 Qt CheckBox TreeWidgetItem
[解决办法]


QList<QCheckBox *> listCheckBox = yourTreeWidget->findChildren<QCheckBox *>();
foreach (QCheckBox *pCheckBox, listCheckBox)
{
        pCheckBox->setVisible(false);
}

热点排行