如何修改文档视图的标题

解决方案 »

  1.   

    如何改变窗口标题
     调用CWnd : : SetWindowText可以改变任何窗口(包括控件)的标题。
    //Set title for application's main frame window .
    AfxGetMainWnd ( ) —> SetWindowText (_T("Application title") )//Set title for View's MDI child frame window .
    GetParentFrame ( ) —> SetWindowText ("_T ("MDI Child Frame new title")