CWinApp::LoadCursor

从当前可执行文件加载 nIDResource 命名由 lpszResourceName 或指定的光标资源。

HCURSOR LoadCursor(
   LPCTSTR lpszResourceName 
) const;
HCURSOR LoadCursor(
   UINT nIDResource 
) const;

参数

  • lpszResourceName
    指向包含光标资源的名称为Null终止的字符串。 可以为该参数使用 CString

  • nIDResource
    光标资源的ID。 有关资源列表,请参见。Windows SDK的 LoadCursor

返回值

为光标的句柄,如果成功;否则 NULL

备注

仅当它在此之前未加载,LoadCursor 加载游标到内存;否则,它分配给现有资源的句柄。

使用 LoadStandardCursorLoadOEMCursor 成员函数访问预定义的Windows光标。

示例

HCURSOR hCursor;

// Load a cursor resource that was originally created using
// the Graphics Editor and assigned the i.d. IDC_MYCURSOR.
hCursor = AfxGetApp()->LoadCursor(IDC_MYCURSOR);

要求

Header: afxwin.h

请参见

参考

CWinApp选件类

层次结构图

CWinApp::LoadStandardCursor

CWinApp::LoadOEMCursor

LoadCursor