我正在尝试构建一个欢迎页面(基于CDHTmlDialog),在该欢迎页面中,我想要显示我最近的文件列表。 它应该看起来像Adobe Reader欢迎页面。
我试图通过获取MRU列表来获取最近的文件列表,但它并不是很顺利。
LoadStdProfileSettings(5); // Load standard INI file options (including MRU)
m_pRecentUrls = new CRecentFileList('0', L"Recent URL List", L"%d", 5, URL_MRU_ENTRY_LEN);
m_pRecentUrls->ReadList();
答案 0 :(得分:3)
MFC中的最新文件列表保留在CRecentFileList* CWinApp::m_pRecentFileList
中。您可以通过以下索引访问它:
CString CMyApp::GetRecentFile( int index ) const
{
return (*m_pRecentFileList)[ index ];
}