Dragging can be a useful feature in various scenarios
especially in visually compelling ones. In Silverlight we can add drag
capabilities to almost every element by using their MouseMove event.
However, this method doesn't provide us a smooth drag experience. For
example, when we drag a rectangle control by using its MouseMove event,
dragging it to LHS immediately after RHS direction just stops the
control. Therefore, we'll use Thumb control that is designed to be dragged with its specialized events. Let's begin: [Read More]