¿Cuál es la mejor manera de actualizar la vista después de dibujar gráficos?
Dibujo un polígono al hacer clic en el botón para resaltar una característica. Luego necesito actualizar ActiveView para mostrar el nuevo polígono. Estas líneas funcionan: mapControl.ActiveView.ScreenDisplay.StartDrawing(StartDrawing(mapControl.ActiveView.ScreenDisplay.hDC, (System.Int16)ESRI.ArcGIS.Display.esriScreenCache.esriNoScreenCache); mapControl.ActiveView.ScreenDisplay.DrawPolygon(feature.Shape); mapControl.ActiveView.ScreenDisplay.FinishDrawing(); mapControl.ActiveView.PartialRefresh(esriViewDrawPhase.esriViewAll, feature.Extent, null); Pero siempre recarga cada capa. Intenté casi todas las formas de llamar PartialRefreshcon otras, esriViewDrawPhasepero ninguna de ellas …