<?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: Format InfoWindow Contents? in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49687#M1342</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;But if I'm putting controls in the DataTemplate, can I refer to them via x:Name in code-behind? This is what doesn't seem to work for me.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Feb 2011 16:56:59 GMT</pubDate>
    <dc:creator>KevinSesock</dc:creator>
    <dc:date>2011-02-18T16:56:59Z</dc:date>
    <item>
      <title>Format InfoWindow Contents?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49678#M1333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a map of office locations that are currently 'Clustered' by the number of people in each, with a maximum flare count of 10. If &amp;lt; 10 people per office the point flares out and I use a maptip to show the name, email, phone number etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using an Info window instead of maptips on those points where I have &amp;gt; 10 people. For example, I may have over 30 Names, Emails and Phone Numbers at one point. I can easily interrogate the attributes of the selected graphic/point to get all the info I need and drop it into a string for display in the infowindow.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;However, how do I go about formatting it before displaying it? I'd like to add it into some kind of template or grid to organise it. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Dec 2010 20:42:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49678#M1333</guid>
      <dc:creator>AndrewHargreaves</dc:creator>
      <dc:date>2010-12-16T20:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Format InfoWindow Contents?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49679#M1334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can template the InfoWindow with an ItemsControl (such as a ListBox) and set the Content to an enumeration of graphics.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color:blue;"&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color:blue;"&gt;if&lt;/SPAN&gt; (selected.Count() &amp;gt; 10)
{
 
&amp;nbsp;&amp;nbsp;&amp;nbsp; MyInfoWindow.Anchor = e.MapPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp; MyInfoWindow.IsOpen = &lt;SPAN style="color:blue;"&gt;true&lt;/SPAN&gt;;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:green;"&gt;//Since a ContentTemplate is defined, Content will define the DataContext for the ContentTemplate&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; MyInfoWindow.Content = selected;
&lt;SPAN style="color:blue;"&gt;&amp;nbsp; return&lt;/SPAN&gt;;
}&lt;/PRE&gt;And XAML:&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;esri&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;InfoWindow&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; x&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt;Name&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"MyInfoWindow"&lt;/SPAN&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; &lt;SPAN style="color:red;"&gt;Padding&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"2"&lt;/SPAN&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; &lt;SPAN style="color:red;"&gt;CornerRadius&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"20"&lt;/SPAN&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; &lt;SPAN style="color:red;"&gt;Background&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"LightSalmon"&lt;/SPAN&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; &lt;SPAN style="color:red;"&gt;Map&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;Binding&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; ElementName&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;MyMap&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"&lt;/SPAN&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; &lt;SPAN style="color:red;"&gt;MouseLeftButtonUp&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"MyInfoWindow_MouseLeftButtonUp"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt; &amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;esri&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;InfoWindow.ContentTemplate&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;DataTemplate&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;ListBox&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; ItemsSource&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;Binding&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; MaxHeight&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"150"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;ListBox.ItemTemplate&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;DataTemplate&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;StackPanel&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Orientation&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"Horizontal"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;TextBlock&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Text&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;Binding&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Attributes&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;[&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;Name&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;]}&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Foreground&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"Black"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; FontSize&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"12"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt; /&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;TextBlock&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Text&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;Binding&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Attributes&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;[&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;EMail&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;]}&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; Foreground&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"Black"&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt; FontSize&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;"12"&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt; /&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;StackPanel&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;DataTemplate&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt; &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;ListBox.ItemTemplate&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;ListBox&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;DataTemplate&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;esri&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;InfoWindow.ContentTemplate&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="color:blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;esri&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color:#a31515;"&gt;InfoWindow&lt;/SPAN&gt;&lt;SPAN style="color:blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:55:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49679#M1334</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2021-12-10T21:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Format InfoWindow Contents?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49680#M1335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm wanting to set up my InfoWindow like the Identify query grid (from this link: &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#Identify"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#Identify&lt;/A&gt;&lt;SPAN&gt;) and be able to customize further. We have overlapping layers that means that it would be easier for an end-user to be able to select a drop-down based on what's under the MapPoint. In other words, I would want to use the InfoWindow as a wrapper for this Identify grid primarily for the purposes of positioning the window and pointing to the map point that was clicked on.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any thoughts?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 18:51:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49680#M1335</guid>
      <dc:creator>KevinSesock</dc:creator>
      <dc:date>2011-02-15T18:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Format InfoWindow Contents?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49681#M1336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sure. In that sample, you can put IdentifyComboBox in your InfoWindow template. This contains the layers that were underneath the mouse click. Look at where ShowFeatures() is called.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 20:50:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49681#M1336</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-02-15T20:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Format InfoWindow Contents?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49682#M1337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I guess I'm just somewhat confused since the example at this URL:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/2.1/samples/start.htm#InfoWindowSimple"&gt;http://help.arcgis.com/en/webapi/silverlight/2.1/samples/start.htm#InfoWindowSimple&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is using a Feature Layer for the query. In addition, I can't reference the "IdentifyComboBox" via the x:Name component in the code-behind. It says it does not exist in the current context. I assume this is because the IdentifyComboBox (not to mention the datagrid as well) are in a DataTemplate, not in the the true xaml layout. Any thoughts?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 12:19:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49682#M1337</guid>
      <dc:creator>KevinSesock</dc:creator>
      <dc:date>2011-02-16T12:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: Format InfoWindow Contents?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49683#M1338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In your previous post, you mentioned you wanted to modify the following sample:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#Identify"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#Identify&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;IdentifyComboBox exists in this sample. The relevant code for ShowFeatures() is in the code-behind.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;From my understanding, you want to add InfoWindow that contains what the IdentifyComboBox contain (layer name) and base on this selection, you want to display information on the Grid. If I understood you correctly, I think what you need to do then is first modify the Identify sample and then use InfoWindow sample as guideline on how to update its template and use in your application. Basically, learn both samples, tweak for your need and merge &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 17:37:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49683#M1338</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-02-16T17:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: Format InfoWindow Contents?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49684#M1339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No, I also want the grid inside the IdentifyComboBox. We'd like to have the information popup with the query info happen at the point where the user is viewing, not to the side or bottom of the screen. I've already managed to take my grid and my IdentifyComboBox and move them around the screen using e.MapPoint and settings the margins, but this is kludgey and suffers from some issues. Instead, I'd much rather have the IdentifyComboBox and the IdentifyResultsPanel be inside the InfoWindow.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 18:01:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49684#M1339</guid>
      <dc:creator>KevinSesock</dc:creator>
      <dc:date>2011-02-16T18:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: Format InfoWindow Contents?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49685#M1340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Any thoughts on this? Would this be possible?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Feb 2011 13:50:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49685#M1340</guid>
      <dc:creator>KevinSesock</dc:creator>
      <dc:date>2011-02-18T13:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: Format InfoWindow Contents?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49686#M1341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It is possible. You just need to modify the DataTemplate of your InfoWindow. Or you can also create a UserControl that contains the IdentifyGrid and use it as your maptip. You may also need to update Binding statements and/or DataContext of your control.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Feb 2011 16:55:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49686#M1341</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-02-18T16:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Format InfoWindow Contents?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49687#M1342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;But if I'm putting controls in the DataTemplate, can I refer to them via x:Name in code-behind? This is what doesn't seem to work for me.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Feb 2011 16:56:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49687#M1342</guid>
      <dc:creator>KevinSesock</dc:creator>
      <dc:date>2011-02-18T16:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Format InfoWindow Contents?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49688#M1343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This Silverlight forum thread might help: &lt;/SPAN&gt;&lt;A href="http://forums.silverlight.net/forums/p/19912/68700.aspx"&gt;http://forums.silverlight.net/forums/p/19912/68700.aspx&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Feb 2011 17:41:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/format-infowindow-contents/m-p/49688#M1343</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-02-18T17:41:08Z</dc:date>
    </item>
  </channel>
</rss>

