void CAboutDlg::OnButton1() 
{
// TODO: Add your control notification handler code here
//初始化列表选项
CListBox* pjg=(CListBox*) GetDlgItem(IDC_LIST1);
pjg->InsertString(-1,"广东");
pjg->InsertString(-1,"海南");
pjg->InsertString(-1,"广西");
pjg->InsertString(-1,"云南");
pjg->InsertString(-1,"重庆");
}
你在对话框里加了一个IDC_LIDT1的对话框,和一个按纽IDC_BUTTON1
当你按下按纽列表就加上了.不知是不是你要求的?