Sdílet prostřednictvím


CWinApp::LoadOEMCursor

Zatížení systému Windows předem určený prostředek kurzor nIDCursor .

HCURSOR LoadOEMCursor(
   UINT nIDCursor 
) const;

Parametry

  • nIDCursor
    OCR_ manifestu konstantní identifikátor, který určuje předdefinované Windows kurzoru.Musí mít # define OEMRESOURCE před # include <afxwin.h> k získání přístupu k OCR_ konstanty v systému WINDOWS.H.

Vrácená hodnota

Popisovač ukazatele, pokud je úspěšná. jinak NULL.

Poznámky

Použití LoadOEMCursor nebo LoadStandardCursor přístup k předdefinované kurzory Windows členské funkce.

Příklad

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

Požadavky

Záhlaví: afxwin.h

Viz také

Referenční dokumentace

Třída CWinApp

Diagram hierarchie

CWinApp::LoadCursor

CWinApp::LoadStandardCursor

LoadCursor