左侧的tree点击 节点 右侧的listview添加一行如何做 我用的MFC 请指教下
1个回答
展开全部
//得到所选项
void CExamSystemDlg::OnTvnSelchangedTree1(NMHDR *pNMHDR, LRESULT *pResult)
{
LPNMTREEVIEW pNMTreeView = reinterpret_cast<LPNMTREEVIEW>(pNMHDR);
HTREEITEM item=pNMTreeView->itemNew.hItem; //得到所选项的句柄
………………………………
//把获得信息 显示在listview里
………………………………
}
插入方法
例子:
m_listTitleShow.InsertItem(0,str);
m_listTitleShow.SetItemText(0,1,choice.Title);
m_listTitleShow.InsertItem(1,_T("A"));
m_listTitleShow.InsertItem(2,_T("B"));
m_listTitleShow.InsertItem(3,_T("C"));
m_listTitleShow.InsertItem(4,_T("D"));
void CExamSystemDlg::OnTvnSelchangedTree1(NMHDR *pNMHDR, LRESULT *pResult)
{
LPNMTREEVIEW pNMTreeView = reinterpret_cast<LPNMTREEVIEW>(pNMHDR);
HTREEITEM item=pNMTreeView->itemNew.hItem; //得到所选项的句柄
………………………………
//把获得信息 显示在listview里
………………………………
}
插入方法
例子:
m_listTitleShow.InsertItem(0,str);
m_listTitleShow.SetItemText(0,1,choice.Title);
m_listTitleShow.InsertItem(1,_T("A"));
m_listTitleShow.InsertItem(2,_T("B"));
m_listTitleShow.InsertItem(3,_T("C"));
m_listTitleShow.InsertItem(4,_T("D"));
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询