.NET Framework Class Library for Silverlight
MultiScaleImage..::.SubImages Property

Gets the collection of MultiScaleSubImage objects within the multiresolution image that is used by the MultiScaleImage.

Namespace:  System.Windows.Controls
Assembly:  System.Windows (in System.Windows.dll)
Syntax

Visual Basic (Declaration)
Public ReadOnly Property SubImages As ReadOnlyCollection(Of MultiScaleSubImage)
    Get
Visual Basic (Usage)
Dim instance As MultiScaleImage
Dim value As ReadOnlyCollection(Of MultiScaleSubImage)

value = instance.SubImages
C#
public ReadOnlyCollection<MultiScaleSubImage> SubImages { get; }

Property Value

Type: System.Collections.ObjectModel..::.ReadOnlyCollection<(Of <(MultiScaleSubImage>)>)
The collection of MultiScaleSubImage objects within the multiresolution image that is used by the MultiScaleImage.
Remarks

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:

  1. 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.

  2. You can access the sub images in a MultiScaleImage (individual MultiScaleSubImage objects) by using the SubImages property.

Examples

The following example shows how to get a list of sub images in a MultiScaleSubImage.

C#
private List<MultiScaleSubImage> RandomizedListOfImages()
{
  List<MultiScaleSubImage> imageList = new List<MultiScaleSubImage>();
  Random ranNum = new Random();

  // Store List of sub images.
  foreach (MultiScaleSubImage subImage in myMultiScaleImage.SubImages)
  {
    imageList.Add(subImage);
  }

  return imageList;
}

The following example allows you to rearrange images in a grid pattern by manipulating all the MultiScaleSubImage objects in the collection. Click the Randomize Images button to see the effect.

Run this sample

Download this sample

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

See Also

Reference

Tags :


Page view tracker