다음을 통해 공유


CButton::GetIcon

이전에 설정 아이콘의 핸들을 가져오려면이 함수를 호출 SetIcon, 즉 단추와 연결 합니다.

HICON GetIcon( ) const;

반환 값

아이콘에 대한 핸들입니다. NULL 아이콘이 이전에 지정 된 경우.

예제

CButton myIconButton2;

// Create an icon button.
myIconButton2.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_ICON, 
   CRect(10,10,60,50), pParentWnd, 1);

// If no icon is defined for the button, define the icon to the 
// system error icon. 
if (myIconButton2.GetIcon() == NULL)
   myIconButton2.SetIcon(::LoadIcon(NULL, IDI_ERROR));

요구 사항

헤더: afxwin.h

참고 항목

참조

CButton 클래스

계층 구조 차트

CButton::SetIcon

CBitmapButton::LoadBitmaps

Bitmaps