2009. 3. 21. 11:34
C/C++/MFC
다이얼로그 해더 부분에 추가
CBitmap m_bmpMainBG;
int m_nMainWidth;
int m_nMainHeight;
OnInitDialog() 부분에 추가
BITMAP bmpInfo; // 비트맵 정보
m_bmpMainBG.LoadBitmap(IDB_BKIMG2); // Main 배경 이미지 Load
m_bmpMainBG.GetBitmap(&bmpInfo); // Main 배경 비트맵 정보 읽기
m_nMainWidth = 280;//bmpInfo.bmWidth; // Main 윈도우 폭
m_nMainHeight = 140;//bmpInfo.bmHeight; // Main 윈도우 높이
SetWindowPos( NULL, 0, 0, m_nMainWidth, m_nMainHeight,SWP_NOZORDER | SWP_NOMOVE);
OnPaint() 부분에 추가
CDC cdc;
cdc.CreateCompatibleDC(&dc);
cdc.SelectObject(m_bmpMainBG);
dc.BitBlt(0, 0, m_nMainWidth, m_nMainHeight, &cdc, 0, 0, SRCCOPY);
cdc.DeleteDC();
'C/C++/MFC' 카테고리의 다른 글
DOM 사용을 위한 속성 및 메소드 요약 가이드 (0) | 2009.05.18 |
---|---|
CBitmapButton 사용하기 (0) | 2009.03.21 |
스태틱 컨트롤 배경 투명하게 하기 (0) | 2009.03.21 |
마우스 메세지 와 wParam,lParam값 (0) | 2009.03.21 |
#include "stdafx.h"와 precompiled header (0) | 2009.03.21 |