Has anyone had success binding to the featureLayers Url property with the silverlight version 2.2 api? I can't get it to work. I believe this is a bug. Anyone have any advice?Here is my xaml and the sample code:<UserControl x:Class="FeatureLayerBindingTest.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:esri="clr-namespace:ESRI.ArcGIS.Client;assembly=ESRI.ArcGIS.Client"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<esri:Map>
<esri:Map.Layers>
<esri:ArcGISTiledMapServiceLayer Url="http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/>
<esri:FeatureLayer Url="{Binding FeatureLayerURL}"/>
</esri:Map.Layers>
</esri:Map>
</Grid>
</UserControl>
using System.Windows.Controls;
using System.ComponentModel;
namespace FeatureLayerBindingTest{
public partial class MainPage : UserControl{
public string FeatureLayerURL {
get { return "http://okcgisprd200/ArcGIS/rest/services/Systems/Dynamic_UIM/MapServer/1"; }
}
public MainPage(){
InitializeComponent();
this.DataContext = this;
}
}
}