MapProgressBar

This sample demonstrates the MapProgressBar control. Zoom or pan the map, and you will see a progress bar appear while map tiles are loaded. As shown in the sample XAML, use of the control only requires declaring a MapProgressBar element and binding it to a Map control.

Download Sample Application
XAML C# VB.NET
<UserControl x:Class="ArcGISWPFSDK.LocalMapProgressBar"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    xmlns:esri="http://schemas.esri.com/arcgis/client/2009">
    <Grid x:Name="LayoutRoot" Background="White">
        <esri:Map x:Name="MyMap" Extent="-15000000,2000000,-7000000,8000000" WrapAround="True">
            <esri:ArcGISTiledMapServiceLayer ID="MyBasemapLayer" 
                Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer" />
        </esri:Map>
        <esri:MapProgressBar x:Name="MyProgressBar" 
            Map="{Binding ElementName=MyMap}"
            HorizontalAlignment="Center" VerticalAlignment="Bottom"
            Width="250" Height="50"
            Margin="15"  />
    </Grid>
</UserControl>

Sample code usage restrictions
5/16/2014