The application is adding a shaded layer to an overlay, then adding the overlay to the overlay collection of the map. I want the shaded layer to draw first so the base map is on top. I tried
winformsMap1.Overlays.MoveToTop(1);
with 1 being the index of the new overlay. The order of the collection is not changed, nor the drawing order. Any suggestions?