功能样式:
因为是单根树,row()的值和tab的序号值是一一对应的,所以可以实现。
//符合自动连接的命名方式
void CActSend::on_treeWidget_clicked(const QModelIndex & a)
{
//a.row()返回的是当前选中的item的索引值
tabWidget->setCurrentIndex(a.row());
}
同样可以引申进行item的字段名的获取,即使用a.data()
void Tree::on_treeWidget_clicked(const QModelIndex & a)
{
if (a.data().toString()=="New Item4")
{
ui.label->setText("you click the item4");
}
}