다음을 통해 공유


CButton::GetBitmap

이전에 설정할 비트맵의 핸들을 가져오려면이 함수를 호출 SetBitmap, 즉 단추와 연결 합니다.

HBITMAP GetBitmap( ) const;

반환 값

비트맵 핸들입니다. NULL 비트맵이 이전에 지정 된 경우.

예제

CButton myBitmapButton;

// Create a bitmap button.
myBitmapButton.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_BITMAP, 
   CRect(10,10,60,50), pParentWnd, 1);

// If no bitmap is defined for the button, define the bitmap to the 
// system close bitmap. 
if (myBitmapButton.GetBitmap() == NULL)
   myBitmapButton.SetBitmap(::LoadBitmap(NULL, MAKEINTRESOURCE(OBM_CLOSE)));

요구 사항

헤더: afxwin.h

참고 항목

참조

CButton 클래스

계층 구조 차트

CButton::SetBitmap

CBitmapButton::LoadBitmaps

Bitmaps