When setting the Mouse.OverrideCursor
property you can choose from a list of Cursors. Arrow for example is contained in the Cursors
class:
Mouse.OverrideCursor = Cursors.Arrow;
But I'm missing the move and copy cursors, which usually appear during Drag&Drop. I know there is always the possiblity of creating a custom cursor, but I would not want to do that, when those cursors already exist.
How can I get those cursors?