Blue Theme Orange Theme Green Theme Red Theme
 
MindFusion's Components
Home | Forums | Videos | Photos | Downloads | Blogs | E-Books | Interviews | Jobs | Beginners | Training
 | Consulting  
Submit an Article Submit a Blog 
 Login Close
User Id:
Password:
 
Forgot Password
Forgot Username
Why Register
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
 Resources  
Close
 Our Network  
Close
Search :       Advanced Search »
Home » XAML » Double Animation In Silverlight 3

Double Animation In Silverlight 3

Writting Animation In Code Behind for Double Animation In Silverlight 3

Author Rank:
Technologies: .NET 3.0 and 3.5, Expression Blend, Silverlight, XAML,Visual C# .NET
Total downloads : 38
Total page views :  2210
Rating :
 0/5
This article has been rated :  0 times
   Print Read/Post comments Post a comment  Rate  
   Email to a friend  Bookmark  Similar Articles  Author's other articles  
Download Files:
DoubleAnimation.zip
 
Become a Sponsor


Related EbooksTop Videos


Introduction

As you go through my previous animation articles you will find we have used DoubleAnimationUsingKeyFrames. But when you create a storyboard and do some animation the code will be generated in XAML. The same thing you can achieve in C# code behind too. So in this article we will explore on that.

Creating a Simple Silverlight Application

Open up Blend 3 and Create a new Silverlight Application.

image1.gif

  1. Add a Rectangle Control Name it rectAnimate. Change the Background so that the animation is visible.

    image2.gif

    image3.gif

    Now create a StoryBoard name it StoryBoard1 and add a TranslateTransform.

    Remember
    we are going to do this in code behind. So delete all the storyboards you just created.

    image-4.gif

    <Storyboard x:Name="Storyboard1">
    <
    DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="rectAnimate" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[3].(TranslateTransform.X)">
    <
    EasingDoubleKeyFrame KeyTime="00:00:00.5000000" Value="150"/>
    </
    DoubleAnimationUsingKeyFrames>
    </Storyboard>

    Adding keyframes to an animation makes the coding of storyboards a little more complex, but they still follow the same general pattern. Create a storyboard, create an animation, create some keyframes, and add the keyframes to the animation, the animation to the storyboard, and the storyboard to the resources.


  2.  

  3. Begin work in this project by declaring the Opknu^k]n` object as we did in the previous example. This code goes above the MainControl() constructor in the MainControl.xaml.cs file.

    private Storyboard MoveRight = new Storyboard();
     

  4. Inside the MainControl() constructor, beneath the Initialize() method, create a new

     DoubleAnimationUsingKeyframes object called XAnim, and set the TargetName and TargetProperty values. This code will once again be targeting the X transform property of the object being animated.
     

    DoubleAnimationUsingKeyFrames XAnim = new DoubleAnimationUsingKeyFrames();

    Storyboard.SetTargetName(XAnim,"rectAnimate");
    XAnim.SetValue(Storyboard.TargetPropertyProperty, new PropertyPath("(UIElement.RenderTransform).(TransformGroup.Children)[3].(TranslateTransform.X)"));
     

  5. Declaration of the preceding DoubleAnimationUsingKeyFrames object is similar to previous examples. The next step differs a bit, though. Here, you declare the BeginTime for the animation, which is expressed as TimeSpan object. As per the example storyboard, this keyframe begins at an offset time of 0. This code goes into MainControl() constructor after the code added in last step.

    XAnim.BeginTime = new TimeSpan(0, 0, 0);
     
  6. Now you need to declare any keyframes that will live inside the animation. Begin by declaring a new SplineDoubleKeyFrame object called SKeyFrame. The KeyTime is set to 0.5 seconds, and the value of the keyframe is 150. This tells Silverlight to move the rectangle 150 pixels along the x axis in 0.5 seconds.
     

    SplineDoubleKeyFrame SKeyFrame = new SplineDoubleKeyFrame();

    SKeyFrame.KeyTime = KeyTime.FromTimeSpan(TimeSpan.FromSeconds(0.5));
    SKeyFrame.Value = 150;
     

  7. After that is done, the keyframe object can be added to the animation. Keep in mind that if you have many keyframes in an animation, each one needs to have a unique name.

    XAnim.KeyFrames.Add(SKeyFrame);
     
  8. Add the animation to the storyboard to the LayoutRoot object:

    MoveRight.Children.Add(XAnim);
    LayoutRoot.Resources.Add("MoveRight", MoveRight);
     
  9. All that's left is to add an event listener and an associated event handler. Add the event listener at the bottom of the MainControl() constructor.
     
  10. If you are using the method described earlier, Visual Studio will create the event handler function for you. All you need to do is add the code that calls the storyboard:

    private void rectAnimate_MouseMove(object sender, MouseEventArgs e)
    {
         MoveRight.Begin();
    }
     
  11. Compile and run the project and place the pointer over the rectangle. The MoveRight storyboard will play, moving the rectangle 150 pixels to the right. If you wanted to make the rectangle move at an angle, it would be as simple as adding a second animation that changes the Y transform of the object.
     
  12. Add the following code to the project, just after MoveRight.Children.Add(XAnim);. Notice that the new animation's name is YAnim and the TargetProperty has been adjusted to affect the Y transform of the Rectangle object.
     

    DoubleAnimationUsingKeyFrames YAnim = new DoubleAnimationUsingKeyFrames();

    Storyboard.SetTargetName(YAnim, "rectAnimate");

    YAnim.SetValue(Storyboard.TargetPropertyProperty, new PropertyPath("(UIElement.RenderTransform).(TransformGroup.Children)[3].(TranslateTransform.Y)"));

    YAnim.BeginTime = new TimeSpan(0, 0, 0);

    SplineDoubleKeyFrame SKeyFrame1 = new SplineDoubleKeyFrame();

    SKeyFrame1.KeyTime = KeyTime.FromTimeSpan(TimeSpan.FromSeconds(0.5));

    SKeyFrame1.Value = 150;

    YAnim.KeyFrames.Add(SKeyFrame1);

    MoveRight.Children.Add(YAnim);

    Use F5 to compile and run the program again. With the second animation in place, the rectangle now moves down and to the right, holding the position at the end of the storyboard.

    Remember that the FillBehavior on storyboards is set to HoldEnd, meaning that the storyboard will stay at its frame when it has finished playing through. If you would like to change the FillBehavior for a storyboard, you can do this through code as well. The following line of code will change the FillBehavior for the storyboard you just created so that when it reaches the end, the rectangle will return to the starting position of the animation:

    MoveRight.FillBehavior = FillBehavior.Stop;

That's it, you have successfully created a storyboard in code behind and did animation by writing the code behind for the DoubleAnimationUsingKeyFrames.

Enjoy Animating.
 


Login to add your contents and source code to this article
 [Top] Rate this article
 About the author
 
Diptimaya Patra

Diptimaya is working as a Software Engineer in UST Global Inc, Trivandrum Center.  He is interested in Microsoft Technologies. He is a good learner. He has a large exposure on Microsoft Office SharePoint Services 2007, Windows SharePoint Services, Silverlight 2, Silverlight 3, Blend 2, Blend 3, WPF, WCF, ASP.NET, AJAX, and NHibernate.

 

He is a native of Cuttack, Orissa.

Reach him at diptimaya.patra@gmail.com

Looking for C# Consulting?
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional consulting company, our consultants are well-known experts in .NET and many of them are MVPs, authors, and trainers. We specialize in Microsoft .NET development and utilize Agile Development and Extreme Programming practices to provide fast pace quick turnaround results. Our software development model is a mix of Agile Development, traditional SDLC, and Waterfall models.
Click here to learn more about C# Consulting.
 
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
Go.NET
Build custom interactive diagrams, network, workflow editors, flowcharts, or software design tools. Includes many predefined kinds of nodes, links, and basic shapes. Supports layers, scrolling, zooming, selection, drag-and-drop, clipboard, in-place editing, tooltips, grids, printing, overview window, palette. 100% implemented in C# as a managed .NET Control. Document/View/Tool architecture with many properties&events. Optional automatic layout.
Dundas Software
Dundas Chart for .NET is the most advanced .NET charting package available today.  With an extremely complete feature set, elegant architecture and easy implementation, Dundas Chart can quickly add advanced Charting functionality to enhance and transform ASP.NET and Windows Forms applications.  Whether you are implementing charting into internal projects, or building applications for clients, Dundas Chart offers advanced technology and advanced results to get the most out of data.
Clickatell's SMS Gateway
Clickatell's Developer Solutions allow you to SMS enable any website or application via a range of API's. Learn More about our API connections.
Free access to .NET Memory Management video
Everything you need to know about Garbage Collection, Temporary Objects, Fragmentation, Finalization and common causes of memory leaks in .NET. Watch the video here.
Microsoft Visual Studio 2010
Microsoft Visual Studio 2010 offers more to developers than any other Visual Studio release. Work more productively and collaboratively-with greater control over your work at every step. The Beta 2 can give you a head start on achieving efficiency.
 
   Print Read/Post comments Post a comment  Rate  
   Email to a friend  Bookmark  Similar Articles  Author's other articles  
Download Files:
DoubleAnimation.zip
 
 Post a Feedback, Comment, or Question about this article
Subject:  
Comment:  
Become a Sponsor
 Comments

 Hosted by MaximumASP  |  Found a broken link?  |  Contact Us  |  Terms & conditions  |  Privacy Policy  |  Site Map  |  Suggest an Idea  |  Media Kit
Current Version: 5.2009.6.2
 © 1999 - 2009  Mindcracker LLC. All Rights Reserved