Example animation of storyboard in WP7

Source: Internet
Author: User

If you want to implement such a control, its transparency will be smoothly transitioned from 0 to 1, and then smoothly transitioned from 1 to 0 (that is, the flickering effect in the dark ).

One way is to define a timer and repeatedly change its transparency.

One way is to use storyboard to achieve this flickering effect. The code is more concise and the code is as follows:

        private Storyboard PrepareShowStory()        {            Storyboard story = new Storyboard();            DoubleAnimation animation;            animation = new DoubleAnimation();            animation.From = 0;            animation.To = 1;            animation.Duration = new Duration(TimeSpan.FromMilliseconds(Duration));            Storyboard.SetTarget(animation, MyTestImage);            Storyboard.SetTargetProperty(animation, new PropertyPath("(UIElement.Opacity)"));            story.Children.Add(animation);            story.AutoReverse = true;            story.RepeatBehavior = RepeatBehavior.Forever;            return story;        }

To start the animation, you can set it as follows:

m_StoryBoard = PrepareShowStory();m_StoryBoard.Begin();

To pause an animation, you can:

m_StoryBoard.Pause();

To re-run the animation, you can:

m_StoryBoard.Resume();

To end the animation, you can:

m_StoryBoard.Stop();

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.