次の方法で共有


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

必要条件

ヘッダー: afxwin.h

参照

関連項目

CButton クラス

階層図

CButton::SetCursor

CBitmapButton::LoadBitmaps

Bitmaps