是否可以使用MFC或Win32函数来获取.NET Cursors.AppStarting?
一些类似于CWaitCursor但表示后台处理的东西。
发布于 2009-07-07 21:16:55
使用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,了解恢复原始游标的细微差别。
https://stackoverflow.com/questions/1094383
复制相似问题