MultiScaleImage.SubImages Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the collection of MultiScaleSubImage objects within the multiresolution image that is used by the MultiScaleImage.
Assembly: System.Windows (in System.Windows.dll)
Property Value
Type: System.Collections.ObjectModel.ReadOnlyCollection<MultiScaleSubImage>The collection of MultiScaleSubImage objects within the multiresolution image that is used by the MultiScaleImage.
Dependency property identifier field: SubImagesProperty
If you want to work with a set of individual images, for example, if you want programmatically move individual images around the screen or filter your images, you will want to use a collection of images rather than a single high-resolution image. There are two basic things you need to do to work with a collection of images:
You need to export your images as a collection rather than a single image. You can do this in Deep Zoom Composer. Make sure to check the Create Collection check box when you export your composition. Images within the collection you export are called sub images.
You can access the sub images in a MultiScaleImage (individual MultiScaleSubImage objects) by using the SubImages property.
The following example shows how to get a list of sub images in a MultiScaleSubImage.
The following example allows you to rearrange images in a grid pattern by manipulating all the MultiScaleSubImage objects in the collection. Tap the Randomize Images button to see the effect.