Reputation: 275
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
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