在Win32或MFC中获取Cursors.AppStarting?

时间:2009-07-07 19:40:27

标签: winapi mfc cursor

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

CWaitCursor类似,但表示后台处理。

1 个答案:

答案 0 :(得分:1)

使用Win32:

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

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

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