I have an application that uses a MultiScaleImage control and I would like to add a thumnbnail window with the unzoomed image and a rectangle outline indicating the portion being viewed in the MultiScaleImage control. I don't have thumbnails for the images but want to create them at runtime.
1) is there a way to get a copy of the unzoomed image from the MultiScaleImage control to put into an Image control or do I have to just use another MultiScaleImage control with the same Source.
2) Any hints or examples would be appreciated.
David
Use the WriteableBitmap class. If multiscaleImage is a MultiscaleImage control and thumbnail is an Image control, then this code will capture the image from the former and display it in the latter.
David