tags:

views:

101

answers:

1

Any one there you have used DoubleAnimationUsingKeyFrames in C# can he/she provide example code or link where I can find the solution. I know how to do in xaml but I want to do it in code using C#. how can i convert following xaml to C#

<Storyboard x:Key="Storyboard1">            
        <DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="border" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[3].(TranslateTransform.X)">
            <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/>
            <SplineDoubleKeyFrame KeyTime="00:00:00.2000000" Value="100"/>
        </DoubleAnimationUsingKeyFrames>
    </Storyboard>

thanks in advance

A: 

I have find answer of myself and here is the link of my question

http://asimsajjad.blogspot.com/2010/03/wpf-doubleanimationusingkeyframes-using.html

Just posted here for your information.

Asim Sajjad