ESRI之MapProgressBar类的API函数地址如下链接,具体属性和方法,请参考:
<!---地图加载进度条,在地图加载慢时显示加载信息,让用户知道地图正在加载中-->
<esri:MapProgressBar x:Name="MyProgressBar"
Map="{Binding ElementName=myMap}"
HorizontalAlignment="Center" VerticalAlignment="Bottom"
Width="200" Height="30"
Margin="25"
BorderBrush="Gray"
Background="White"
BorderThickness="2"
TextBrush="Red"/>
注意调整BorderBrush、Background、BorderThickness、TextBrush属性,即可美化一下进度条,如果需要做的更好,需要熟练使用Blend的美工进行调整。