1. MFC Application 생성 Application Type Single document, Document/View architecture support는 uncheck User Interface Features Thick frame, Initial status bar, System menu(저는 귀찮아서 이것도 삭제) uncheck 2. Stdafx.h 파일을 열고 마지막 줄에 다음 추가 #include "atlimage.h" 3. ChildView.h 파일을 열고 CChildView class 속성에 다음 추가 CImage image; CString sFilename; 4. ChildView.cpp 파일을 열고 생성자에 다음 추가 sFilename = L""; 5. Resource view ..