I need to implement a simple adorner for drag & drop functionality in a wpf mvvm application. Items are dragged from a ListBox to an ItemsControl and within the ItemsControl. The ListBox items do not have any special formatting and simply displays a list of text\label items and the ItemsControl DataTemplate formats the items as labels. How can I implement a siple floating text adorner for the drag & drop operation?
The actual drag and drop is already coded and working using RelayCommands in the vm i.e. no code behind.
I have read a number of related posts on this topic and the solutions are either not mvvm or offer a whole drag & drop solution (such as GongSolutions, etc.) which I don't want. I just need a simple floating text adorner.
Edit: Contrary to the comments be Will, a MVVM Drag & Drop solution is viable and in my situation necessary, as business logic has to be applied to the drag & drop functionality and needs to be testable i.e. belongs in the vm NOT the view\UI. So here is my answer:
Initially I used the events as per the bea.stollnitz article and this worked fine but I decided to convert these to use MVVMLight RelayCommand and this is also working. Aside from that I have taken most of the methods from bea.stollnitz’s DragDropHelper.cs and used them in my vm, with one important exception, in the DropTarget_PreviewDrop method\event, I add\remove from my ObservableCollection< MyObj > , this updates the view. One small caveat; I had to use RemoveAt and Insert methods for the ObservableCollection to get the view to update. For some reason the property changed does not work if an item is changed in the list. I have also used the DraggedAdorner.cs but not the InsertionAdorner.cs, as my requirements was for a simple floating text adorner.
The model exposes a class, MyObj with a Text property (amongst others).
The view model has an ObservableCollection< MyObj >
xmam:
<Window.Resources>
<vm:MyObjViewModel x:Key="MyObjViewModel" />
<DataTemplate x:Key="ItemDrag">
<TextBlock Text="{Binding Path=Text}" TextAlignment="Center" FontWeight="Bold" />
</DataTemplate>
</Window.Resources>
<ListBox ItemsSource="{Binding MyObjModelList}"
DisplayMemberPath="Text"
SelectionMode="Single"
vm:MyObjViewModel.IsDragSource="true" vm:MyObjViewModel.DragDropTemplate="{StaticResource ItemDrag}">
</ListBox>