Cyan
Cyan

Reputation: 1118

How to combine images?

WP7 application. I have some images (that I get from some URIs on the internet) and I want to combine them (one on top of the other, the second at a certain x and y on top on the first). Can this be done in WP7? What library should I use?

Upvotes: 1

Views: 411

Answers (1)

Emond
Emond

Reputation: 50672

Just place two Images in a Canvas:

<Canvas>
    <Image Source="uri1" Canvas.Top="10" Canvas.Left="20"/>
    <Image Source="uri2" Canvas.Top="30" Canvas.Left="40"/>
</Canvas>

Upvotes: 2

Related Questions