在Resources添加一个Tree,然后在CXxxDlg 的protected:添加CTreeCtrl m_treectrl;
在OnInitDialog
// TODO: Add extra initialization here
HTREEITEM hti;
hti = m_treectrl.InsertItem("sssssssss");
for (int i=0; i<8; i++)
m_treectrl.InsertItem("ccccc", -1, -1, hti);
return TRUE; // return TRUE unless you set the focus to a control