Condividi tramite


CButton::GetCursor

Chiamare la funzione membro per ottenere un handle di un cursore, precedentemente impostate con SetCursor, associato a un pulsante.

HCURSOR GetCursor( ); 

Valore restituito

Handle a un'immagine del cursore.NULL se nessun cursore in precedenza è specificato.

Esempio

CButton myIconButton;

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

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

Requisiti

Header: afxwin.h

Vedere anche

Riferimenti

Classe di CButton

Grafico della gerarchia

CButton::SetCursor

CBitmapButton::LoadBitmaps

Bitmaps