Hi, I created an extension that listens to the CollectFeaturesTask.CollectionCompleted event, and checks if a feature meets certain requirements. In some cases, an email must be sent, including an image of the map. I have this almost working now: When I click on "Finish", the map image is created and the email is sent, but the image shows the map as it was before the last feature was added to it: The feature that was just being edited does not show.I tried this code, but the map is only refreshed after the mapview becomes active again.var map = MobileApplication.Current.Map;
map.CenterAt(feature.Geometry.GetExtent().GetCenter());
map.InvalidateVisual();
SaveMapImage(map);
Does anyone know how to force a refresh on the map (This is a WPF map, so I do not have the GetMapImage(), Refresh() or Invalidate() methods)?