I just upgaded an application from 2.1 API to 3.0 API to take advantage of some new functionality. Currently I haven't changed any code other than swapping out the new assemblies.Here's my issue: With 2.1 The FeatureDataGrid_SelectionChanged Event doesn't fire until I select a record in the feature data grid, so it doesn't fire upon the selection of the graphics but in 3.0 the event fires right after a selection (spatial or attribute) selection is made (when the feature data grid is first populated). private void FeatureDataGrid_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
}
How do I get the code not to fire when the feature data grid is first populated?Dave