다음을 통해 공유


CStatic::GetCursor

이전에 설정 되는 커서의 핸들을 가져옵니다. SetCursor, 즉 연관 CStatic.

HCURSOR GetCursor( );

반환 값

현재 커서에 대 한 핸들 또는 NULL 커서가 없습니다 설정 된 경우.

예제

CStatic myStatic;

// Create a child icon static control.
myStatic.Create(_T("my static"), 
   WS_CHILD|WS_VISIBLE|SS_ICON|SS_CENTERIMAGE, CRect(10,10,150,50), 
   pParentWnd);

// If no image is defined for the static control, define the image 
// to the system arrow and question mark cursor.
if (myStatic.GetCursor() == NULL)
   myStatic.SetCursor(::LoadCursor(NULL, IDC_HELP));

요구 사항

헤더: afxwin.h

참고 항목

참조

CStatic 클래스

계층 구조 차트

CStatic::SetCursor

STM_GETIMAGE

Cursors