I'm use listview in the dragdropmanager here my xaml
<ListView Grid.Row="1" AllowDrop="True" ItemsSource="{Binding RecipeSeqList}" SelectionMode="Single">
<ig:DragDropManager.DropTarget> <ig:DropTarget IsDropTarget="True" ig:HighlightOnDragStart="True"/> </ig:DragDropManager.DropTarget>
<ListBox.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding Name}">
<ig:DragDropManager.DragSource> <ig:DragSource IsDraggable="True" DragOver="DragSource_DragOver"/></ig:DragDropManager.DragSource>
</TextBlock>
</DataTemplate> </ListBox.ItemTemplate> </ListView>
I want select listviewitem and drag and change reorder listitem like picture
ex) [1][2][3] DRAG-> [1][3][2]
but I can't.. help me!
Hello Kim,
I noticed that there is another forum thread regarding the same query. Please, keep in mind that according to our support policy we handle singe thread per issues. This helps us ensure that all issues are addressed and handled correctly.
Please have a look at this forum thread where I have already provided an answer and let me know if you have any additional questions.
Thank you for using Infragistics components.
Best regards, Bozhidara Pachilova Associate Software Developer
Thank you very much. This solution was a guide for me!