在 MFC(Microsoft Foundation Classes)的 CDocument 类中,的确有名为 OnOpenDocument 的公共方法。该方法用于打开文档,并在派生类中进行重写以实现自定义的打开文档逻辑。

下面是 OnOpenDocument 方法的基本结构:
virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);

这个方法返回一个 BOOL 值,通常在派生类中进行重写。在重写该方法时,您可以根据需要执行打开文档的操作,例如加载文档内容等。




转载请注明出处:http://www.zyzy.cn/article/detail/17546/MFC/CDocument