程序主窗口标题栏的一般形式为:
文档标题—主窗口标题
1.修改文档标题
修改CExamDoc::onNewDocument()函数为:
BOOL CExamDoc::OnNewDocument()
{
if(!CDocument::OnNewDocument())
return FALSE;
SetTitle("文档标题");
return TRUE;
}
2.修改主窗口标题
修改CMainFrame的成员函数PreCreateWindowO为:
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
m_strTitle="主窗体标题" ;
return CFrameWnd::PreCreateWindow(cs);
}