在资源视图里面右键你加的ListControl控件,然后添加成员变量。。。假如叫m_ListCtrl,然后在OnInitDialog()函数里m_ListCtrl.InsertItem(0,_T("AAA"));m_ListCtrl.InsertItem(1,_T("BBB"));还有要注意一点。。MFC字符串都用CString这种类型,你可以把你以前的string转换成CString,就能直接替换这些_T("XXX")了