This is a quick and simple example of how to create a draggable object in Silverlight 2.
Create a Rectangle and set the RenderTransform to a TranslateTransform.
Register the MouseLeftButtonDown, MouseLeftButtonUp, and the MoseMove events for the rectangle.
In the MouseLeftButtonDown and MouseLeftButtonUp event you will capture and release the capture of the mouse, respectively. Also, you will [...]


