My map page contains a popup which contains a FeatureDataForm used to edit the attributes of the selected feature. The FeatureDataForm is defined like this: <esri2:FeatureDataForm x:Name="MyFeatureDataForm"
FeatureLayer="{Binding Path=Layers[AllAvailableFeatureLayer], ElementName=MyMap}"
IsEnabled="True"
IsReadOnly="False"
LabelPosition="Left"
CommitButtonContent="Save" />
Following the SAVE I want to summarize the new data and place it into an email that will be sent to the Administrator. My question is - Can the data be read directly out of the FeatureDataForm, or must it be read out of the graphic? And in either case, how is it done?Seems like something like this should work but last line fails. Why?<CODE> Graphic SelectedGraphic = MyFeatureDataForm.GraphicSource; IDictionary<string, object> attributes = SelectedGraphic.Attributes; var keyID = attributes["ID_Signup"]; var myVar = attributes["Location"]; MessageBox.Show(myVar);</CODE>Thanks