This topic has not yet been rated - Rate this topic

MultiScaleSubImage Class

Silverlight

This class holds the properties for each sub-image within the MultiScaleImage.

System.Object
  System.Windows.DependencyObject
    System.Windows.Controls.MultiScaleSubImage

Namespace:  System.Windows.Controls
Assembly:  System.Windows (in System.Windows.dll)
public sealed class MultiScaleSubImage : DependencyObject

The MultiScaleSubImage type exposes the following members.

  Name Description
Public method Supported by Silverlight for Windows Phone MultiScaleSubImage Initializes a new instance of the MultiScaleSubImage class.
Top
  Name Description
Public property Supported by Silverlight for Windows Phone AspectRatio Gets the aspect ratio of the image used as the source of the MultiScaleSubImage. The aspect ratio is the width of the image divided by its height.
Public property Supported by Silverlight for Windows Phone Dispatcher Gets the Dispatcher this object is associated with. (Inherited from DependencyObject.)
Public property Id Gets the Id of the image used as the source of the MultiScaleSubImage.
Public property Supported by Silverlight for Windows Phone Opacity Gets or sets the degree of the MultiScaleSubImage opacity.
Public property OriginalPixelHeight Gets the original height of the image to be displayed.
Public property OriginalPixelWidth Gets the original width of the image to be displayed.
Public property Supported by Silverlight for Windows Phone ViewportOrigin Gets or sets the top-left corner of the area of the image to be displayed.
Public property Supported by Silverlight for Windows Phone ViewportWidth Gets or sets the width of the area of the image displayed.
Public property Supported by Silverlight for Windows Phone ZIndex Gets or sets a value that represents the z-order rendering behavior of the MultiScaleSubImage. Z-order determines the relative rendering order of objects (which object is on top of which other objects).
Top
  Name Description
Public method Supported by Silverlight for Windows Phone CheckAccess Determines whether the calling thread has access to this object. (Inherited from DependencyObject.)
Public method Supported by Silverlight for Windows Phone ClearValue Clears the local value of a dependency property. (Inherited from DependencyObject.)
Public method Supported by Silverlight for Windows Phone Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Supported by Silverlight for Windows Phone Finalize Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone GetAnimationBaseValue Returns any base value established for a Silverlight dependency property, which would apply in cases where an animation is not active. (Inherited from DependencyObject.)
Public method Supported by Silverlight for Windows Phone GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone GetType Gets the Type of the current instance. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone GetValue Returns the current effective value of a dependency property from a DependencyObject. (Inherited from DependencyObject.)
Protected method Supported by Silverlight for Windows Phone MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone ReadLocalValue Returns the local value of a dependency property, if a local value is set. (Inherited from DependencyObject.)
Public method Supported by Silverlight for Windows Phone SetValue Sets the local value of a dependency property on a DependencyObject. (Inherited from DependencyObject.)
Public method Supported by Silverlight for Windows Phone ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Public field Static member Supported by Silverlight for Windows Phone AspectRatioProperty Identifies the AspectRatio dependency property.
Public field Static member IdProperty Identifies the Id dependency property.
Public field Static member Supported by Silverlight for Windows Phone OpacityProperty Identifies the Opacity dependency property.
Public field Static member OriginalPixelHeightProperty Identifies the OriginalPixelHeight dependency property.
Public field Static member OriginalPixelWidthProperty Identifies the OriginalPixelWidth dependency property.
Public field Static member Supported by Silverlight for Windows Phone ViewportOriginProperty Identifies the ViewportOrigin dependency property.
Public field Static member Supported by Silverlight for Windows Phone ViewportWidthProperty Identifies the ViewportWidth dependency property.
Public field Static member Supported by Silverlight for Windows Phone ZIndexProperty Identifies the ZIndex dependency property.
Top

If you want to work with a set of individual images, for example, 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 do this:

  1. You need to export your images as a collection rather than a single image. You can do this in Deep Zoom Composer. Just make sure to check the "Create Collection" checkbox 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) you created in step 1 by using the SubImages property.

XAML usage for this class is technically possible but is not shown, because a XAML usage does not serve a purpose in any existing Silverlight content model. The subimages are the result of processing of an image set by a tool, and are not created in pure markup. Typically, you interact with this class by getting the value of MultiScaleImage.SubImages. It is possible to apply a XAML defined style to MultiScaleImage properties.

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


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

    // Store List of sub images.
    foreach (MultiScaleSubImage subImage in MyMSI.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 on the "Randomize Images" button to see the effect.

Run this sample

Download this sample

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

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

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ