Is there a way to only draw the new image? I'm using the below method to change the image, and then hide one control and show the viewer.
private void ReloadImage(int index, ImageCollection images)
{
this.annotationViewer.Images = images;
this.annotationViewer.FocusedIndex = index;
this.axWindowsMediaPlayer.Visible = false;
this.annotationViewer.Visible = true;
}
