Поделиться через


CWinApp::LoadOEMCursor

Loads the Windows predefined cursor resource specified by nIDCursor.

HCURSOR LoadOEMCursor(
   UINT nIDCursor 
) const;

Параметры

  • nIDCursor
    An OCR_ manifest constant identifier that specifies a predefined Windows cursor. You must have #define OEMRESOURCE before #include <afxwin.h> to gain access to the OCR_ constants in WINDOWS.H.

Возвращаемое значение

A handle to a cursor if successful; otherwise NULL.

Заметки

Use the LoadOEMCursor or LoadStandardCursor member function to access the predefined Windows cursors.

Пример

// In the stdafx.h file, add #define OEMRESOURCE to
// include the windows.h definitions of OCR_ values.
#define OEMRESOURCE
#include <afxwin.h>         // MFC core and standard components
#include <afxext.h>         // MFC extensions
HCURSOR hCursor;
// Load the predefined WIndows "size all" cursor.
hCursor = AfxGetApp()->LoadOEMCursor(OCR_SIZEALL);

Требования

Header: afxwin.h

См. также

Основные понятия

CWinApp Class

CWinApp Members

Hierarchy Chart

CWinApp::LoadCursor

CWinApp::LoadStandardCursor

LoadCursor