윈도우 프로그래밍 Visual C++ 2010 MFC Programming(김선우, 신화서 저) 3장 심화문제입니다. [3-1]// MainFrm.cpp: CMainFrame 클래스의 구현// #include "stdafx.h"#include "심화문제 3-1.h" #include "MainFrm.h" #ifdef _DEBUG#define new DEBUG_NEW#endif // CMainFrame IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWndEx) BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWndEx) ON_WM_DESTROY() ON_WM_CREATE()END_MESSAGE_MAP() // CMainFrame 생성/소멸 CMainFrame::C..