Live Chat Icon For mobile
Live Chat Icon

How do I execute 2 animations in parallel?

Platform: WPF| Category: Rendering Graphics

You can do so by first making the 2 animations a child of a single storyboard as follows:


<BeginStoryboard>
    <Storyboard x:Name='Animation'>
        <Storyboard x:Name='FadeInStoryboard'/>
        <Storyboard x:Name='FadeOutStoryboard'/>
    </Storyboard
</BeginStoryboard>

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.