2009-07-07 35 views

回答

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