<?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: MVVM and the Bing Maps Sample in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28110#M739</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are you using the Command Parameter on the RadioButton. You can also pass data to the ICommand through the CommandParameter Property of the RadioButton.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So you would have your ViewModel as either the DataContext or in a StaticResource that you can bind to, Then you would have a ICommand Property in the ViewModel that you would use in the Command Parameter through Command="{Binding Path=Command ...}". Then in your your CommandParmeters you can use a Binding or just set the value like CommandParameter="Street" or CommandParameter="{Binding Path=Street}". This is just the concept and not example code.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 May 2012 18:05:24 GMT</pubDate>
    <dc:creator>HyrumErnstrom</dc:creator>
    <dc:date>2012-05-16T18:05:24Z</dc:date>
    <item>
      <title>MVVM and the Bing Maps Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28109#M738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am trying to convert the Bing maps sample where you can toggle between the background types to MVVM for practice.&amp;nbsp; I am stuck on how to get the tag off of the radio buttons so that I can toggle and how to bind the layer style property on the bing layer to the LayerType in the ViewModel.&amp;nbsp; Can this be done using MVVM?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2012 14:10:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28109#M738</guid>
      <dc:creator>BrianGustafson</dc:creator>
      <dc:date>2012-05-16T14:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: MVVM and the Bing Maps Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28110#M739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are you using the Command Parameter on the RadioButton. You can also pass data to the ICommand through the CommandParameter Property of the RadioButton.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So you would have your ViewModel as either the DataContext or in a StaticResource that you can bind to, Then you would have a ICommand Property in the ViewModel that you would use in the Command Parameter through Command="{Binding Path=Command ...}". Then in your your CommandParmeters you can use a Binding or just set the value like CommandParameter="Street" or CommandParameter="{Binding Path=Street}". This is just the concept and not example code.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2012 18:05:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28110#M739</guid>
      <dc:creator>HyrumErnstrom</dc:creator>
      <dc:date>2012-05-16T18:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: MVVM and the Bing Maps Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28111#M740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That got me part of the way.&amp;nbsp; Is the LayerStyle property on the bing tile layer bindable?&amp;nbsp; I have a property of TileLayer.LayerType but the binding does not seem to be working.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;bing:TileLayer ID="BingLayer" LayerStyle="{Binding NewLayerType}"&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2012 18:38:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28111#M740</guid>
      <dc:creator>BrianGustafson</dc:creator>
      <dc:date>2012-05-16T18:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: MVVM and the Bing Maps Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28112#M741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;While the property is bindable, it is only FrameworkElement objects that have a datacontext. You can therefore only bind to static resources.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So usually you would grab the view model that you declared in the resources: LayerType="{Binding NewLayerType Source={StaticResource MyViewModel}}"&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 13:28:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28112#M741</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2012-05-17T13:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: MVVM and the Bing Maps Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28113#M742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Now the background is set when I initially load the application to the property set in the ViewModel but when I change the background using the radio button nothing changes.&amp;nbsp; I can see that the command is running and setting the value but it is like the layer is not updataing or refreshing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;LayerStyle="{Binding NewLayerType, Source={StaticResource ViewModel}, Mode=TwoWay}"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;public class MainPageViewModel : ViewModelBase
 {
&amp;nbsp; private TileLayer.LayerType _newLayerType;
&amp;nbsp; public RelayCommand UpdateBackgroundCommand { get; private set; } 
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp; public MainPageViewModel()
&amp;nbsp; {
&amp;nbsp;&amp;nbsp; _newLayerType = TileLayer.LayerType.AerialWithLabels;
&amp;nbsp;&amp;nbsp; WireCommands();
&amp;nbsp; }
&amp;nbsp; 
&amp;nbsp; private void WireCommands()
&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; UpdateBackgroundCommand = new RelayCommand(UpdateBackground);
&amp;nbsp;&amp;nbsp; UpdateBackgroundCommand.IsEnabled = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp; 
&amp;nbsp; #region Properties
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public TileLayer.LayerType NewLayerType
&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; get
&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return _newLayerType;
&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;nbsp;&amp;nbsp;&amp;nbsp; set
&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (_newLayerType != value)
&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;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; _newLayerType = value;
&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; OnPropertyChanged("NewLayerType");
&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;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;nbsp;&amp;nbsp; #endregion
&amp;nbsp; 
&amp;nbsp; public void UpdateBackground(object param)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp; switch(param.ToString())
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; case "Road":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _newLayerType = TileLayer.LayerType.Road;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MessageBox.Show(_newLayerType.ToString());
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;
&amp;nbsp;&amp;nbsp;&amp;nbsp; case "Aerial":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _newLayerType = TileLayer.LayerType.Aerial;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MessageBox.Show(_newLayerType.ToString());
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;
&amp;nbsp;&amp;nbsp;&amp;nbsp; case "AerialWithLabels":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _newLayerType = TileLayer.LayerType.AerialWithLabels;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MessageBox.Show(_newLayerType.ToString());
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
 }&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;public class ViewModelBase : INotifyPropertyChanged
 {
&amp;nbsp; public bool IsDesignTime
&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; get { return DesignerProperties.IsInDesignTool; }
&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; #region INotifyPropertyChanged Members

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public event PropertyChangedEventHandler PropertyChanged;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected virtual void OnPropertyChanged(string propName)
&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; var propChanged = PropertyChanged;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (propChanged != null)
&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; propChanged(this, new PropertyChangedEventArgs(propName));
&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;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #endregion
 }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:08:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28113#M742</guid>
      <dc:creator>BrianGustafson</dc:creator>
      <dc:date>2021-12-10T21:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: MVVM and the Bing Maps Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28114#M743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Bing.TileLayer.LayerType is a DependencyProperty. I was able to test that it responds to binding using the following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; xmlns:bing="clr-namespace:ESRI.ArcGIS.Client.Bing;assembly=ESRI.ArcGIS.Client.Bing"
&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:esri="http://schemas.esri.com/arcgis/client/2009"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Grid x:Name="LayoutRoot" Background="White"&amp;gt;
&amp;nbsp; &amp;lt;esri:Map x:Name="MyMap"&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;bing:TileLayer 
&amp;nbsp;&amp;nbsp;&amp;nbsp; ID="BingLayer" LayerStyle="Aerial"
&amp;nbsp;&amp;nbsp;&amp;nbsp; ServerType="Production"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; Token="{StaticResource BingKey}"/&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp; &amp;lt;/esri:Map&amp;gt;
&amp;nbsp; &amp;lt;ComboBox x:Name="BingLayerStyle"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SelectionChanged="BingLayerStyle_SelectionChanged"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SelectedItem="{Binding ElementName=MyMap, Path=Layers[BingLayer].LayerStyle, Mode=TwoWay}"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VerticalAlignment="Top" HorizontalAlignment="Center"/&amp;gt;
 &amp;lt;/Grid&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
BingLayerStyle.ItemsSource = new ESRI.ArcGIS.Client.Bing.TileLayer.LayerType[]{ 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ESRI.ArcGIS.Client.Bing.TileLayer.LayerType.Aerial,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ESRI.ArcGIS.Client.Bing.TileLayer.LayerType.AerialWithLabels,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ESRI.ArcGIS.Client.Bing.TileLayer.LayerType.Road};
&amp;nbsp;&amp;nbsp; BingLayerStyle.SelectedIndex = 1;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 15:55:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28114#M743</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-12T15:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: MVVM and the Bing Maps Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28115#M744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I got it working now, thanks for your help.&amp;nbsp; Is there any documentation on using the map control with MVVM?&amp;nbsp; I am working towards adding some feature layers to my map and then bringing up InfoWindows when clicked.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 19:54:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28115#M744</guid>
      <dc:creator>BrianGustafson</dc:creator>
      <dc:date>2012-05-17T19:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: MVVM and the Bing Maps Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28116#M745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't know if we have any write up on this but you can use the API reference page to determine which properties of the map and/or layers are bindable: &lt;/SPAN&gt;&lt;A href="http://resourcesbeta.arcgis.com/en/help/silverlight-api/apiref/api_start.htm?ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Map_members.html"&gt;http://resourcesbeta.arcgis.com/en/help/silverlight-api/apiref/api_start.htm?ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Map_members.html&lt;/A&gt;&lt;SPAN&gt;. It would have information whether it is a DependencyProperty, read-only property, etc.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 21:31:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mvvm-and-the-bing-maps-sample/m-p/28116#M745</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2012-05-17T21:31:19Z</dc:date>
    </item>
  </channel>
</rss>

