用LoadCursor可以得到系统的光标(我是学C的,所以用C代码)<br>HCURSOR LoadCursor(<br> HINSTANCE hInstance, // handle to application instance<br> LPCTSTR lpCursorName // name string or cursor resource identifier<br>);<br>这是第二个参数的内容<br>Value Description <br>IDC_APPSTARTING Standard arrow and small hourglass <br>IDC_ARROW Standard arrow <br>IDC_CROSS Crosshair <br>IDC_HAND Windows NT 5.0 and later: Hand <br>IDC_HELP Arrow and question mark <br>IDC_IBEAM I-beam <br>IDC_ICON Obsolete for applications marked version 4.0 or later. <br>IDC_NO Slashed circle <br>IDC_SIZE Obsolete for applications marked version 4.0 or later. Use IDC_SIZEALL. <br>IDC_SIZEALL Four-pointed arrow pointing north, south, east, and west <br>IDC_SIZENESW Double-pointed arrow pointing northeast and southwest <br>IDC_SIZENS Double-pointed arrow pointing north and south <br>IDC_SIZENWSE Double-pointed arrow pointing northwest and southeast <br>IDC_SIZEWE Double-pointed arrow pointing west and east <br>IDC_UPARROW Vertical arrow <br>IDC_WAIT Hourglass <br>(摘自MSDN)<br><br><br>