[MFC] 다이얼로그 기반 - 다이얼로그 제목 바꾸기
MFC가 만들어주는 기본적인 틀을 사용하면 000App.cpp 파일에서 000App::InitInstance() 부분에 아래와 같은 빨간색 줄을 하나 추가만 하면 된다. // The one and only window has been initialized, so show and update it. m_pMainWnd->ShowWindow(SW_SHOW); m_pMainWnd->UpdateWindow(); m_pMainWnd->SetWindowText("Numerical Analysis");//프로그램 제목 변경. 반면에, 다이얼로그 기반의 프로그램에서는제목을 바꾸기 위해서는000Dlg.cpp 파일에서 C000Dlg::OnInitDialog() 부분에 SetIcon(m_hIcon, TRUE); // 큰 아..
전공/MFC 삽질들..
2009. 7. 16. 08:37