<?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 Configure InfoWindow in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/configure-infowindow/m-p/670287#M17265</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have been adding to my development popup capabilities using this sample (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#WebMapDynamicServicePopups" rel="nofollow" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#WebMapDynamicServicePopups&lt;/A&gt;&lt;SPAN&gt;) Although I had some problems now it is working but I like to add a couple of supposedly minor changes that I have no idea how to implement.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The first one is a close button, it seems quite straightforward but the only thing I managed to get done is closing the infowindow when you click on it. I have been searching and the flex API has a closeButtonVisible property but the silverlight API does not have it. How can I put a close button in my silverlight .Net development?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, I am showing a image just like in the example, but unlike the example my picture is quite general so it looks too tiny in the infowindow. I supose that it is getting a thumbnail to show. At first I tried to show the full image in a new window when clicking the thumbnail but as this is not working and I have space left I would like to make the thumbnail bigger. How can I do this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jun 2012 14:55:27 GMT</pubDate>
    <dc:creator>IkerBerasaluce</dc:creator>
    <dc:date>2012-06-21T14:55:27Z</dc:date>
    <item>
      <title>Configure InfoWindow</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/configure-infowindow/m-p/670287#M17265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have been adding to my development popup capabilities using this sample (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#WebMapDynamicServicePopups" rel="nofollow" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#WebMapDynamicServicePopups&lt;/A&gt;&lt;SPAN&gt;) Although I had some problems now it is working but I like to add a couple of supposedly minor changes that I have no idea how to implement.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The first one is a close button, it seems quite straightforward but the only thing I managed to get done is closing the infowindow when you click on it. I have been searching and the flex API has a closeButtonVisible property but the silverlight API does not have it. How can I put a close button in my silverlight .Net development?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, I am showing a image just like in the example, but unlike the example my picture is quite general so it looks too tiny in the infowindow. I supose that it is getting a thumbnail to show. At first I tried to show the full image in a new window when clicking the thumbnail but as this is not working and I have space left I would like to make the thumbnail bigger. How can I do this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 14:55:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/configure-infowindow/m-p/670287#M17265</guid>
      <dc:creator>IkerBerasaluce</dc:creator>
      <dc:date>2012-06-21T14:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Configure InfoWindow</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/configure-infowindow/m-p/670288#M17266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The DataTemplate is created for you based on the webmap PopupInfo. Unfortunately a MaxWidth/MaxHeight is set for image so it currently cannot exceed 235/145.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you are not using Webmap Popups, you can change the DataTemplate as you wish: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#InfoWindowSimple" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#InfoWindowSimple&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp; &amp;lt;DataTemplate x:Key="MyFeatureLayerInfoWindowTemplate"&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;StackPanel&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;TextBlock Text="{Binding [STATE_NAME]}" Foreground="Black" FontSize="12" /&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Image Source="http://2.bp.blogspot.com/-2TNxVSJ4J9E/TfYfd0ChiMI/AAAAAAAABcc/53CtYEptiBY/s1600/USA-flag.jpg" Height="300" Width="300"/&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Button Content="Close" Click="Button_Click"/&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/StackPanel&amp;gt; &amp;nbsp;&amp;nbsp; &amp;lt;/DataTemplate&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp; private void Button_Click(object sender, RoutedEventArgs e) &amp;nbsp; { &amp;nbsp;&amp;nbsp; MyInfoWindow.IsOpen = false; &amp;nbsp; }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2012 19:28:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/configure-infowindow/m-p/670288#M17266</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2012-07-03T19:28:14Z</dc:date>
    </item>
  </channel>
</rss>

