Reputation: 373
How can I re arrange list box items like windows 8 start page. I created a sample that is capable of drag and drop / re arrange items inside it. But I don't know how to implement that effect like windows 8 start screen (Like Dragging the item along with the mouse and drop it). In my current implementation, while clicking and dragging a small box along with the curser is coming, that entire item is not coming. How I can implement this in WPF. I am not asking like "Do it for me". Anyone please guide me to implement the same
NB : I creating this in a touch environment
My current implementation is based on the Answer given in the below link Stackoverflow link
Upvotes: 6
Views: 710
Reputation: 1127
I've used the Gong-WPF drag and drop library: on GitHub at https://github.com/punker76/gong-wpf-dragdrop
There are examples of how to use drag and drop in WPF within the repo there.
Upvotes: 2