I can set a cursor like this:
Me.Cursor = Cursors.Cross
Using IntelliSense, I don't find this "Copy" cursor:
Is there any way to get it in a managed way? I wouldn't want to load a bitmap or so. I would like to leave that up to Windows as the user may have changed the cursor size or set a different color schema.
Drag and drop cursors belong
ole32.dll
. You can load them from that library. To do so, you need to loadole32.dll
usingLoadLibrary
, then usingLoadCursor
get the handle of those cursors. You can use 1 to 7 asLoadCursor
parameter to get cursors fromole32.dll
. The cursor which you are looking for is3
or6
: