vc++如何设置窗口标题?

2024-11-16 20:38:00
推荐回答(1个)
回答1:

你这是MFC的文档视图结构工程,要设置标题,设置视图View类的Text是没用的。

要设置文档标题,在View类使用:

GetDocument()->SetTitle(strText1);

要设置主窗口标题,用:

AfxGetMainWnd()->SetWindowText(strText1);