vote up 2 vote down star

I'm trying to implement drag and drop functionality in a Surface Application that is built using the MVVM pattern. I'm struggling to come up with a means to implement this while adhering to the MVVM pattern. Though I'm trying to do this within a Surface Application I think the solution is general enough to apply to WPF as well.

I'm trying to produce the following functionality:

  • User contacts a FrameworkElement within a ScatterViewItem to begin a drag operation (a specific part of the ScatterViewItem initiates the drag/drop functionality)
  • When the drag operation begins a copy of that ScatterViewItem is created and imposed upon the original ScatterViewItem, the copy is what the user will drag and ultimately drop
  • The user can drop the item onto another ScatterViewItem (placed in a separate ScatterView)

The overall interaction is quite similar to the ShoppingCart application provided in the Surface SDK, except that the source objects are contained within a ScatterView rather than a ListBox.

I'm unsure how to proceeded in order to enable the proper communication between my ViewModels in order to provide this functionality. The main issue I've encountered is replicating the ScatterViewItem when the user contacts the FrameworkElement.

flag

Is there any chance of seeing some code? How do ScatterViewItems hold children controls? How are you binding this to a viewmodel? – Ray Booysen Jun 25 at 19:34
I'll try to provide a 'real' answer later, but basically a drag&drop operation happens primarily in the views. The fact that a drag is happening probably doesn't require any communication with your original view's viewmodel until the drop happens. When the drop is detected, you would either call a method or execute a command in your viewmodel and pass in the information about what was dropped. The VM would then add it to a list that is bound to your destination scatterview. The origin view should also process the drop completed call and pass that on to its viewmodel. – Ben Reierson Jun 26 at 17:29

1 Answer

vote up 1 vote down check

You could use an attached property. Create an attached property and in the setproperty method bind to the droped event :


public static void SetDropCommand(ListView source, ICommand command)
        {
            source.Drop += (sender, args) =>
                               {
                                   var data = args.Data.GetData("FileDrop");
                                   command.Execute(data);
                               };
        }

Then you can bind a command in your view model to the relevant control on the view. Obviously you may want to make your attached property apply to your specific control type rather than a listview.

Hope that helps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.