Reorder bindable listview by drag and drop using UWP
问题 I'm trying to reorder ListView by drag and drop,it work with me while am using static items, but when I bind the data using itemsSorce the drag work fine but i can't drop the item this is my code C#: lstSrvMenu.ItemsSource = Menue.MainItems.Where(m => int.Parse(m.GroupID) > 0); XAML: <ListView Name="lstSrvMenu" Margin="0,40,0,0" AllowDrop="True" CanDragItems="True" CanReorderItems="True" IsSwipeEnabled="true"> <ListView.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding GroupTDesc}"