您可以使用画布和拇指:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:maps="clr-namespace:Microsoft.Maps.MapControl.WPF;assembly=Microsoft.Maps.MapControl.WPF"
x:Class="WpfApplication15.MainWindow">
<Grid>
<maps:Map/>
<Canvas>
<Grid Name="grid"
Canvas.Left="0" Canvas.Top="0"
Width="200" Height="100">
<!-- Your control begin -->
<Rectangle Fill="Blue"/>
<!-- Your control end -->
<Thumb Name="thumbMove">
<Thumb.Template>
<ControlTemplate>
<Rectangle Fill="Transparent"/>
</ControlTemplate>
</Thumb.Template>
</Thumb>
</Grid>
</Canvas>
</Grid>
</Window>
thumbMove.DragDelta += (s, e) =>
{
Canvas.SetLeft(grid, Canvas.GetLeft(grid) + e.HorizontalChange);
Canvas.SetTop(grid, Canvas.GetTop(grid) + e.VerticalChange);
};