如题:我想单击Folder和Item的时候显示它们唯一的标识或者说是主键值,怎么办??
///////////////////////////////////////// int iFolder = m_wndOutlookBar.AddFolder(_T("基础数据"), 0);
int nIndex = m_wndOutlookBar.InsertItem(iFolder, 1, _T("基础设置"), 0, NULL);
m_wndOutlookBar.SetItemData(nIndex,  (DWORD)new CNavigationNode(RUNTIME_CLASS(CSystemCenter), "基础数据")); iFolder = m_wndOutlookBar.AddFolder(_T("库存管理"), 1);
nIndex = m_wndOutlookBar.InsertItem(iFolder, 0, _T("入库管理"), 0, NULL);
m_wndOutlookBar.SetItemData(nIndex,  (DWORD)new CNavigationNode(RUNTIME_CLASS(CClientManageView), "基础数据"));
////getitemdata的时候 索引不对,取出的数据就错了,请问如何解决。