lundi 20 avril 2020

hide a row of QTreeWidget in QT

QTreeWidgetItem *parentFake = new QTreeWidgetItem ();
parentFake->setText ( 0 , tr ("fake") );
itemsList.append( parentFake );
parentFake->setHidden(true);

I have tried this thing it is working.But how to do this after adding the itemList not while adding ??

Aucun commentaire:

Enregistrer un commentaire