Click here to Skip to main content
15,893,668 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
HI,

How to do simple animation for Metro APp using C#.Iam having set of png..wen i touch it should get animated by using all the png's.

Any help plz...
Posted
Comments
Jeff Blankenburg 6-Feb-13 10:49am    
I'm not sure I entirely understand your question. You have a set of PNG files, and when you click on one of the images, you want to animate them?

1 solution



// Here myRectangle is a Rectangle Xaml Page.
// Create the transform
TranslateTransform moveTransform = new TranslateTransform();
moveTransform.X = 0;
moveTransform.Y = 0;
myRectangle.RenderTransform = moveTransform;

// Create a duration of 2 seconds.
Duration duration = new Duration(TimeSpan.FromSeconds(1.0));
// Create two DoubleAnimations and set their properties.
DoubleAnimation myDoubleAnimationX = new DoubleAnimation();
Storyboard sb = new Storyboard();
sb.Duration = duration;
sb.Children.Add(myDoubleAnimationX);
Storyboard.SetTarget(myDoubleAnimationX, moveTransform);
Storyboard.SetTargetProperty(myDoubleAnimationX, "X");

myDoubleAnimationX.To = 0;
myDoubleAnimationX.From = 340;
sb.Begin();



Thanks,
Bilaal
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900