次の方法で共有


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

その他の技術情報

CStatic のメンバー