Freigeben über


CStatic::GetCursor

Ruft das Handle des Cursors ab, mit SetCursor zuvor festgelegt, der mit CStatic zugeordnet ist.

HCURSOR GetCursor( );

Rückgabewert

Ein Handle für den aktuellen Cursor oder NULL, wenn kein Cursor festgelegt wurde.

Beispiel

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));

Anforderungen

Header: afxwin.h

Siehe auch

Referenz

CStatic-Klasse

Hierarchien-Diagramm

CStatic::SetCursor

STM_GETIMAGE

Cursors