QTreeWidget中如何确定选定的Item

QTreeWidget中如何确定选定的Item

 

 

void Tree::on_treeWidget_clicked(const QModelIndex & a)

{

if (a.data().toString()=="New Item4")

{

   ui.label->setText("you click the item4");

}

}

你可能感兴趣的:(tree)