0
votes

In my Windows Phone 7 application, I have a large image and i want to draw another small image (from an image folder) in specific position (x, y) on top of the large image. How can I do that?

1
Do you want to change the large image or do you want to 'stack' the images in the UI? - Emond
no i will not change the large image i want to stack the images in the UI - Rawan Shannaq

1 Answers

0
votes

You can put the images in a canvas and position them

<Canvas>
    <Image Source="BigImage.jpg"/>
    <Image Source="SmallImage.jpg" Canvas.Left="100" Canvas.Top="50" />
</Canvas>

Depending on your requirements/setup you could also nest them in a Grid and use the Margin properties of the images.