Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Latest commit

 

History

History
7 lines (4 loc) · 695 Bytes

File metadata and controls

7 lines (4 loc) · 695 Bytes

WPF Drag and Drop

WPF natively supports drag and drop operations - that is, you the developer get some information when a UI element is dragged across the screen and then dropped on another UI element, but from a user's perspective, there's no feedback. If we want some kind of visual cue, (mouse cursor change, ghosted preview, or moving the element itself) we the developers have to add that functionality.

This project provides drag and drop gesture support with a ghosted preview to WPF using MVVM style architecture.

For a full description on this project, please see the full article.