WPF drags cursor to default cursors

I would like to use the default mouse cursor over the UIElement element to indicate that the control is being dragged.

A cursor that looks like an arrow and a FocusVisual rectangle with an overlapping plus sign inside the rectangle. Basically, the cursor that is used when setting DragDropEffects.Copy during a drag and drop operation.

However, I would like to use this cursor, like all other types, using something like Cursor = "DragCopy". Unfortunately, this cursor seems to be unavailable. I do not want to use a custom cursor due to compatibility and visual standards between the OS.

Any suggestions?

+6
wpf drag-and-drop cursor
source share
1 answer

You will need to p / call the SetCursor method of Win32.

+1
source share

All Articles