I have two polygon layers and create new feature for one layer by selecting polygon from another layer. the selected polygon is highlighted without problem. I have a FeatureDataForm which is ESRI in house control as attribute data entry for the new feature, and need to show it right after the polygon is highlighted for user input for the new feature. the problem is that the FeatureDataForm apprears as blank popup window without attribute texbox. I need help of expertise here. the piece code is:
FeatureLayer myFeatureLayer = MyMap.Layers["dpcpoly"] as FeatureLayer; MyFeatureDataForm.FeatureLayer = myFeatureLayer;
MyFeatureDataForm.GraphicSource = copyGraphic; //copyGraphic is selected polygon from another layer.
FeatureDataFormBorder.Visibility = Visibility.Visible;