Map.Progress += new EventHandler<ESRI.ArcGIS.Client.ProgressEventArgs>(Map_Progress);
void Map_Progress(object sender, ESRI.ArcGIS.Client.ProgressEventArgs e) { if (e.Progress == 100) { HtmlPage.Window.Invoke("hideSplashscreen", null); } }
<esri:Map x:Name="MyMap" WrapAround="True" Progress="MyMap_Progress"> <!-- more code here --> <TextBlock x:Name="ProgressTb" VerticalAlignment="Top" HorizontalAlignment="Center"/>
private void MyMap_Progress(object sender, ESRI.ArcGIS.Client.ProgressEventArgs e) { ProgressTb.Text = string.Format("Progress : {0}", e.Progress); }
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.