mfc 怎样将文档内容显示在列表框里?

2024-11-22 12:43:55
推荐回答(1个)
回答1:

1.先把列表框里面的内容保存到变量temp中,把下列代码加入到按钮的响应函数即可。

CFile outf = CFile("out.txt");
outf.out(temp);
outf.flush();

另外C++里面的文件操作,可以原封不动地搬到mfc中,如果你在C++语言里面会,也可以用C++的库函数实现文件操作。

2.例程:
CString strFile = "c:\\test.txt";
CFile f;
f.Open(strFile, CFile::modeRead);
char* str = new char[f.GetLength()];
f.Read(str, f.GetLength());
f.Close();

GetDlgItem(IDC_EDIT_VALUE)->SetWindowText(str);