Can I set the Feature Layer Path of a FeatureDataForm to the Editor LayersID?Below I have the Editor LayerIDs hardcoded for example....In my code its removed and I am changing this in VB based on a radio button selectionCan I set the FeatureDataForm up to point to what ever the Editor LayerIDs feature is? <esri:Editor x:Key="MyEditor" Map="{Binding ElementName=MyMap}" LayerIDs="MG_Polygon" GeometryServiceUrl="http://tasks.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer"<Border x:Name="DataFormBorder" Visibility="Collapsed" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10,10,10,0" Width="300" Height="300" > <Border.Effect> <DropShadowEffect Color="Black" Direction="-45" BlurRadius="20" Opacity=".75" /> </Border.Effect> <StackPanel Orientation="Vertical"> <esri:FeatureDataForm x:Name="FeatureDataForm" EditEnded="CloseMePoint" FeatureLayer="{Binding Path=Layers[MG_Point], ElementName=MyMap}" IsReadOnly="False" LabelPosition="Left" /> <Button x:Name="CloseButton1" Width="75" Height="20" Content="Close" Margin="0,10,0,0" Click="CloseButton"/> </StackPanel> </Border>