共用方式為


CButton::GetCursor

呼叫此成員函式以取得游標的控制代碼,先前設定的 SetCursor,與按鈕。

HCURSOR GetCursor( ); 

傳回值

將游標影像的控制代碼。 NULL ,如果游標先前未指定。

範例

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

需求

Header: afxwin.h

請參閱

參考

CButton 類別

階層架構圖

CButton::SetCursor

CBitmapButton::LoadBitmaps

Bitmaps