<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How do I add a wait indicator? in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-do-i-add-a-wait-indicator/m-p/46439#M1270</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would like to add a wait indicator to a panel -- the same kind that is in the legend sample.&amp;nbsp; I have the xaml code, but cannot figure out how to call it, or start and stop it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks, Chris&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Oct 2012 15:13:39 GMT</pubDate>
    <dc:creator>ChrisBradberry</dc:creator>
    <dc:date>2012-10-12T15:13:39Z</dc:date>
    <item>
      <title>How do I add a wait indicator?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-do-i-add-a-wait-indicator/m-p/46439#M1270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would like to add a wait indicator to a panel -- the same kind that is in the legend sample.&amp;nbsp; I have the xaml code, but cannot figure out how to call it, or start and stop it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks, Chris&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 15:13:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-do-i-add-a-wait-indicator/m-p/46439#M1270</guid>
      <dc:creator>ChrisBradberry</dc:creator>
      <dc:date>2012-10-12T15:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do I add a wait indicator?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-do-i-add-a-wait-indicator/m-p/46440#M1271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The wait indicator of the legend is created with a StoryBoard repeating forever a rotation animation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It starts and stops just by making it visible and collapsed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example, the BusyIndicator of the legend control is defined this way:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;Grid x:Name="BusyIndicator" Background="Transparent" Margin="3,0"&amp;nbsp; &amp;nbsp; HorizontalAlignment="Left" VerticalAlignment="Center" RenderTransformOrigin="0.5,0.5" &amp;gt;&amp;nbsp; &amp;lt;Grid.Triggers&amp;gt; &amp;nbsp; &amp;lt;EventTrigger RoutedEvent="Grid.Loaded"&amp;gt; &amp;nbsp;&amp;nbsp; &amp;lt;EventTrigger.Actions&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;BeginStoryboard&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Storyboard&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;DoubleAnimation Duration="0:0:1" RepeatBehavior="Forever" To="360" Storyboard.TargetName="BusyIndicator" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Storyboard.TargetProperty="(UIElement.RenderTransform).(RotateTransform.Angle)" /&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Storyboard&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/BeginStoryboard&amp;gt; &amp;nbsp;&amp;nbsp; &amp;lt;/EventTrigger.Actions&amp;gt; &amp;nbsp; &amp;lt;/EventTrigger&amp;gt;&amp;nbsp; &amp;lt;/Grid.Triggers&amp;gt;&amp;nbsp;&amp;nbsp; &amp;lt;Grid.RenderTransform&amp;gt; &amp;nbsp; &amp;lt;RotateTransform /&amp;gt;&amp;nbsp; &amp;lt;/Grid.RenderTransform&amp;gt;&amp;nbsp; &amp;lt;Ellipse Fill="#1E525252" Margin="11,2,11,20" Width="2" Height="2"/&amp;gt;&amp;nbsp; &amp;lt;Ellipse Fill="#3F525252" Height="3" Width="3" VerticalAlignment="Top" HorizontalAlignment="Right" Margin="0,4,5,0" /&amp;gt;&amp;nbsp; &amp;lt;Ellipse Fill="#7F525252" Width="4" HorizontalAlignment="Right" Height="4" VerticalAlignment="Top" Margin="0,9,1,0" /&amp;gt;&amp;nbsp; &amp;lt;Ellipse Fill="#BF525252" Height="5" Width="5" VerticalAlignment="Bottom" Margin="0,0,3,3" HorizontalAlignment="Right" /&amp;gt;&amp;nbsp; &amp;lt;Ellipse Fill="#FF525252" Height="6" Width="6" VerticalAlignment="Bottom" Margin="9,0" /&amp;gt; &amp;lt;/Grid&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 16:02:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-do-i-add-a-wait-indicator/m-p/46440#M1271</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2012-10-12T16:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do I add a wait indicator?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-do-i-add-a-wait-indicator/m-p/46441#M1272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Dominique.&amp;nbsp; I really like the simple solutions.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Chris&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 16:05:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-do-i-add-a-wait-indicator/m-p/46441#M1272</guid>
      <dc:creator>ChrisBradberry</dc:creator>
      <dc:date>2012-10-12T16:05:15Z</dc:date>
    </item>
  </channel>
</rss>

