How do you implement something like drag and drop using (Silverlight) Windows Phone 7 (Mango)?
Ie, I add an image in the center of page, then want to allow the user to move that image around on screen, possibly also resizing it by pinching.
|
How do you implement something like drag and drop using (Silverlight) Windows Phone 7 (Mango)? Ie, I add an image in the center of page, then want to allow the user to move that image around on screen, possibly also resizing it by pinching.
| ||||
|
feedback
|
|
This turned out to be pretty simple as soon as I started playing around with Expression Blend 4! This code did it really well for moving around:
The key part is that stuff within "Custom:Interaction.Behaviors". Not sure if this can be used to perform some other custom operations, or do pinching, but I guess it's not too far away? And this is not only for Mango level Silverlight - I haven't actually installed Mango SDK yet, this should work on earlier versions.
| ||||
|
feedback
|
|
In Expression Blend 4, Go to Asset tab --> Behavior --> MouseDragElementBehavior to drag the item. To resize by pinching, do you mean double click? you could set onMouseLeftButtonUp and set a counter? | |||
|
feedback
|