1

我正在尝试构建一个简单的应用程序来显示我选择的目录的完整路径,但是到目前为止我唯一能得到的是目录的名称:

void CFolderBrowserDlg::OnTvnSelchangedMfcshelltree1(NMHDR *pNMHDR, LRESULT *pResult)
{
    LPNMTREEVIEW pNMTreeView = reinterpret_cast<LPNMTREEVIEW>(pNMHDR);
// TODO: Add your control notification handler code here
*pResult = 0;
TVITEMW hItem = pNMTreeView->itemNew;
TCHAR szText[256];
hItem.pszText= szText;
hItem.cchTextMax= 256*sizeof(TCHAR);
hItem.mask= TVIF_TEXT;
TreeView_GetItem(pNMTreeView->hdr.hwndFrom,&hItem);
m_Folder= szText;
UpdateData(FALSE);
}

这是我的代码。你能告诉我吗?

4

2 回答 2

5

你在编码它。这对我有用:

void CMFCdlg1Dlg::OnTvnSelchangedMfcshelltree1(NMHDR *pNMHDR, LRESULT *pResult)
{
    LPNMTREEVIEW pNMTreeView = reinterpret_cast<LPNMTREEVIEW>(pNMHDR);
    m_Tree.GetItemPath(m_EditString, pNMTreeView->itemNew.hItem);
    UpdateData(false);
}   

成员变量是:

m_Tree, type CMFCShelltreeCtrl attached to the ShellTree control
m_EditString, type CString attached to the Edit control

如果你需要它,你甚至可以得到一个 C 风格的字符串:

LPTSTR path = m_EditString.GetBuffer(0);
于 2015-03-14T04:48:03.513 回答
0
CString fullpath;
HTREEITEM current = hItem.hItem;
while (current != NULL) 
{
   CString thistext = GetTreeCtrl()->GetItemText(current);
   fullpath = thistext + _T("\\") + fullpath;
   current = GetTreeCtrl()->GetParentItem(current);
}

这是一般的想法,虽然我没有实际测试过,但它应该让你朝着正确的方向前进。

于 2012-12-23T09:36:26.197 回答