1

我使用列表控件创建了一个网格函数。列表中有两列。数据和名称。

用户应该选择一个文件;文件内的数据应显示在第一列“DATA”中,文件名应显示在第二列“NAME”中。我已经编写了代码,但列表中没有出现任何内容

CFileFind finder;
bool bFound;
CString filename = "C:\\ Location\\*.txt";
bFound = finder.FindFile(filename);

if(bFound) 
{

   while(bFound) 
   {
        bFound = finder.FindNextFile();
        if(bFound)
        {
            m_List.AddString(finder.GetFileName()); //This is where the actual data is added 
        }
   }
   CStdioFile files;
   CFileException exp;
   CString strLine;  

   if (files.Open(filename, CFile::modeRead, &exp))
   {
      while(files.ReadString(strLine)){}
   }
}
void CuserspecificationDlg::InsertItems()
{
       HWND hWnd = ::GetDlgItem(m_hWnd, IDC_LIST1);
       // Set the LVCOLUMN structure with the required 
       // column information
         ..
         .. 
         SetCell(hWnd,out,1,1);   // where out is the Cstring variable for edit control  
}

可能是什么错误?

4

1 回答 1

2

请在此处查看有关如何使用列表框的教程。您可以定义一个类型为 CListBox 的成员变量,该变量通过控件向导映射到您的列表框。

于 2012-07-30T16:43:56.553 回答