Reputation: 320
Is there any way, drag and drop items in same Gridview for reordering the items?
I visited these examples but in both examples drag and drop allows items in different GridViews.
http://blogs.msdn.com/b/going_metro/archive/2012/07/16/drag-and-drop-within-a-grouped-grid-view.aspx
http://www.renauddumont.be/en/2012/windows-8-csharp-xaml-drag-drop
I am trying to drag and drop items in same Gridview for reordering the items.
Thanks
Upvotes: 1
Views: 4901
Reputation: 320
Just add these lines in GridView XAML
CanReorderItems="True"
AllowDrop="True"
CanDragItems="True"
Upvotes: 2