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));
需求
Header: afxwin.h