是否可以使用MFC或Win32函数获取.NET Cursors.AppStarting
?
与CWaitCursor
类似,但表示后台处理。
答案 0 :(得分:1)
使用Win32:
// show the app starting cursor
HCURSOR hPrevCursor = SetCursor(LoadCursor(NULL, IDC_APPSTARTING));
// restore the original cursor when done
SetCursor(hPrevCursor);
查看LoadCursor和SetCursor的文档。另请查看this note有关恢复原始光标的细微差别。