別途、フレームウィンドウ(SDI/MDI)のタイトルを設定したい場合
CFrameWnd の OnUpdateFrameTitle() をオーバーライドします。
void CMainFrame::OnUpdateFrameTitle(BOOL bAddToTitle)
{
CFrameWnd::OnUpdateFrameTitle(bAddToTitle);
SetWindowText(_T("表示したい文字列"));
}
Copyright 1997-2008 BBB All rights reserved.