user281947
user281947

Reputation: 275

Set a source of MultiScaleImage control in Silverlight

I am setting the source of an MultiScaleImage control but its not showing up me the imgae.:(

Below is the code ..

   <Grid x:Name="LayoutRoot" >
        <MultiScaleImage Width="100"  Height="100" Source="Image/Chrysanthemum.jpeg" />
    </Grid>

Upvotes: 2

Views: 786

Answers (1)

AnthonyWJones
AnthonyWJones

Reputation: 189457

The multiscaleimage control is expecting to receive a url to xml content created by the Deep Zoom image composer. Its this xml file which contains the references to the tile images that make up a multi-scale image.

Upvotes: 1

Related Questions