Hi,In my application I need to get a new image of the my map every time it is updated (zoom or pan funcionalities). I'm using the Map.ExtentChanged Event, but Sometimes the Image is shot before the Whole map is Shown. Is there any event or property that could show me the exact moment that the map finishes rendering?MyMap.ExtentChanged += (s, e) =>
{
WriteableBitmap imagem = new WriteableBitmap(MyMap, null);
mapImagePreview.Source = imagem;
mapImagePreview.HorizontalAlignment = HorizontalAlignment.Center;
mapImagePreview.VerticalAlignment = VerticalAlignment.Center;
mapImagePreview.Stretch = Stretch.Uniform;
imagem.Render(MyMap, null);
};