I put several shapes (like Ellipse and Rectangle) on a Canvas. Now, I want user to be able to drag & drop these shapes. Is there some predefined functionality that I can use, or I should implement the drag & drop myself using the mouse events ?

Thanks !

link|improve this question

47% accept rate
feedback

2 Answers

Handling the mouse events and implementing drag and drop yourself will certainly work, but depending on what you are trying to do you may be able to leverage Expression Blend behaviors. The Microsoft.Expression.Interactions DLL includes some useful basic behaviors, triggers, and actions to be used in Silverlight and WPF.

There is a MouseDragElementBehavior that implements a basic drag and drop functionality for an element, which should work regardless of your layout container (so you wouldn't be constrained to a Canvas). You can drop this behavior onto an element using Blend, or define it directly in XAML if you would like:

<Rectangle Fill="Red" Stroke="Black" HorizontalAlignment="Left" Width="100" Height="100">
    <i:Interaction.Behaviors>
        <il:MouseDragElementBehavior/>
    </i:Interaction.Behaviors>
</Rectangle>

Your project will have to reference both System.Windows.Interactivity.dll and Microsoft.Expression.Interactions.dll to use this behavior.

EDIT (to show attaching this behavior in C# code-behind):

Rectangle rect = new Rectangle();
rect.Fill = new SolidColorBrush(Colors.Red);
rect.Width = 100;
rect.Height = 100;

MouseDragElementBehavior dragBehavior = new MouseDragElementBehavior();
dragBehavior.Attach(rect);

Remember to include the Microsoft.Expression.Interactivity.Layout namespace with your using statements.

link|improve this answer
Hi, I'm not really familiar with Expression Blend, but it sounds interesting. I'm doing some kind of program that enable users to draw geometric problems (Circles, Triangles, Bisectors etc). Since the Shapes are created dynamically by the user, I guess that I need to set the MouseDragElementBehavior in C# rather than XAML, right ? Could you please provide a C# sample code of doing that ? How should I reference to System.Windows.Interactivity.dll and Microsoft.Expression.Interactions.dll ? Thanks ! – user242408 Jan 4 '10 at 18:59
If you don't have Expression Blend 3 installed you will have to download and install the SDK (for free) to be able to reference the DLLs. You can download it here : microsoft.com/downloads/… One of the nice things about behaviors is being able to encapsulate some UI behavior code and then attach it to an element declaratively in XAML. However, it is possible to instantiate and attach a behavior in code-behind as well, so I'll edit the above to include an example in C#. – Dan Auclair Jan 4 '10 at 20:41
Sounds interesting... I downloaded "Microsoft Expression Blend 3 SDK" but when I started to install it, I got this message: ".Net version 3.5 or newer run-time components must be installed before installing Microsoft Expression Blend 3 SDK. Please try installing again after correcting the issue.". However, I see that "Microsoft .Net Framework 3.5" is installed on my computer. Isn't this enough ? – user242408 Jan 4 '10 at 21:19
Not sure... the download requirements say .Net 3.5 SP1. Are you sure you have SP1 installed? – Dan Auclair Jan 4 '10 at 22:05
Yes. Here is all .NET stuff that is installed on my computer: * Microsoft .NET Compact Framework 2.0 SP2 * Microsoft .NET Compact Framework 3.5 * Microsoft .NET Framework 2.0 Service Pack 1 * Microsoft .NET Framework 3.0 Service Pack 1 * Microsoft .NET Framework 3.5 Is anything missing ? Could you point me to the download page of all missing stuff ? Thanks ! – user242408 Jan 5 '10 at 10:58
show 4 more comments
feedback

I believe you will need to do this yourself, using the mouse events and the visual tree. Here is an article I believe will help - link text. If not I have some sample code that I can post later this evening.

HTH

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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