I am a beginner in Windows Phone 7 Development, i am building an app in which i want to rotate an image to a particular angle, for example I have an image of an arrow pointing straight upwards, I want it to be pointing at lets say 15 degrees,

How will i do it? like a user enters the angle and image gets rotated. are there some functions available to do it?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

use a RotateTransform

<Image ... x:Name"myImg">
  <Image.RenderTransform>
    <RotateTransform Angle="90" />
  </Image.RenderTransform>
</Image>

in code you can rotate then by calling:

((RotateTransform)myImg.RenderTransform).Angle = x;
link|improve this answer
Thanks It worked!! – Umer Altaf Dec 4 '11 at 11:55
1  
you're welcome, then please mark my answer as answered – pivotnig Dec 4 '11 at 12:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.