У меня есть 2 Родительских ветви котории имеют дочерние c чекбоксами:HTREEITEM htiParent1 = m_checktree.InsertItem("Parent 1", NULL, NULL);HTREEITEM htiParent2 = m_checktree.InsertItem("Parent 2", NULL, NULL);m_checktree.InsertItem("Child 1", NULL, NULL, htiParent1);m_checktree.InsertItem("Chil d 2", NULL, NULL, htiParent2);m_checktree.InsertItem("Chil d 3", NULL, NULL, htiParent2);Если юзер поставил чек на Child 3, как мне узнать имя етой ветви (тоесть "Child 3")????
|