0

Cursors.AppStarting是否可以使用 MFC 或 Win32 函数获取 .NET ?

Someting 类似于CWaitCursor但表示后台处理。

4

1 回答 1

1

使用 Win32:

// show the app starting cursor
HCURSOR hPrevCursor = SetCursor(LoadCursor(NULL, IDC_APPSTARTING));

// restore the original cursor when done
SetCursor(hPrevCursor);

查看LoadCursorSetCursor的文档。另请查看有关恢复原始光标的细微差别的注释。

于 2009-07-07T21:16:54.827 回答