<?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 Re: Symbol Covering Progress Bar in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/symbol-covering-progress-bar/m-p/556756#M14285</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You were correct orginally. I somehow removed my ZoomFillSymbol, so it looked like removing those rectangles caused an issue. I wonder why they were even there to begin with, because my site works perfectly. Thanks for your quick help.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Sep 2012 15:22:09 GMT</pubDate>
    <dc:creator>JannalynPontello</dc:creator>
    <dc:date>2012-09-19T15:22:09Z</dc:date>
    <item>
      <title>Symbol Covering Progress Bar</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/symbol-covering-progress-bar/m-p/556752#M14281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a progress bar on my Silverlight web map that is being covered by a plus symbol in the center of the map. I'm guessing the symbol is built in somehow, because I never added it. I need it to go away because users cannot see the percent complete on the progress bar, but I don't know where it's added. I checked the ESRI templates that can be downloaded and noticed one of them didn't have the symbol on the map, but I can't figure out what's different between that template and my own app. Any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 13:14:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/symbol-covering-progress-bar/m-p/556752#M14281</guid>
      <dc:creator>JannalynPontello</dc:creator>
      <dc:date>2012-09-19T13:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Covering Progress Bar</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/symbol-covering-progress-bar/m-p/556753#M14282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;there is probably a couple of lines like&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Rectangle Width="2" Height="10" Fill="Black" Opacity="0.75" HorizontalAlignment="Center" VerticalAlignment="Center" IsHitTestVisible="False" /&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Rectangle Height="2" Width="10" Fill="Black" Opacity="0.75" HorizontalAlignment="Center" VerticalAlignment="Center" IsHitTestVisible="False" /&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;somewhere in MainPage.xaml.&amp;nbsp; Remove them.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Lance&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 14:14:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/symbol-covering-progress-bar/m-p/556753#M14282</guid>
      <dc:creator>LanceCrumbliss</dc:creator>
      <dc:date>2012-09-19T14:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Covering Progress Bar</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/symbol-covering-progress-bar/m-p/556754#M14283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If I remove them, then I lose the rectangle that draws when users zoom in and out. My website will be used by an older audience, so I need them to show up. Do you know if I can apply an attribute to the xaml so that the plus doesn't show? I'm not a programmer by trade, so it's at least good to know where the symbol is coming from.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 14:54:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/symbol-covering-progress-bar/m-p/556754#M14283</guid>
      <dc:creator>JannalynPontello</dc:creator>
      <dc:date>2012-09-19T14:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Covering Progress Bar</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/symbol-covering-progress-bar/m-p/556755#M14284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;my guess is that you removed the wrong one(s).&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And yes, you can make the cross-hair visible/collapsed by putting it in a grid and binding it's visibility to a property (and implementing INotifyPropertyChanged) in the code-behind.&amp;nbsp; You may need to use a ValueConverter to convert from Boolean to Visibility, depending on how you want to do it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Lance&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 14:59:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/symbol-covering-progress-bar/m-p/556755#M14284</guid>
      <dc:creator>LanceCrumbliss</dc:creator>
      <dc:date>2012-09-19T14:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Symbol Covering Progress Bar</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/symbol-covering-progress-bar/m-p/556756#M14285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You were correct orginally. I somehow removed my ZoomFillSymbol, so it looked like removing those rectangles caused an issue. I wonder why they were even there to begin with, because my site works perfectly. Thanks for your quick help.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 15:22:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/symbol-covering-progress-bar/m-p/556756#M14285</guid>
      <dc:creator>JannalynPontello</dc:creator>
      <dc:date>2012-09-19T15:22:09Z</dc:date>
    </item>
  </channel>
</rss>

