Matrix Animated Button : Animation « Windows Presentation Foundation « C# / C Sharp






Matrix Animated Button

Matrix Animated Button
      

<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <Canvas.Resources>
        <PathGeometry x:Key="path"
                      Figures="M 0 0 C 300 0, 400 400, 700 200
                               S 0 300 600 576 S 400 700 100 200" />
    </Canvas.Resources>

    <Path Stroke="Black" Data="{StaticResource path}" />

    <Button>
        Button
        <Button.RenderTransform>
            <MatrixTransform x:Name="xform" />
        </Button.RenderTransform>
    </Button>

    <Canvas.Triggers>
        <EventTrigger RoutedEvent="Canvas.Loaded">
            <BeginStoryboard>
                <Storyboard RepeatBehavior="Forever">
                    <MatrixAnimationUsingPath 
                        Storyboard.TargetName="xform"
                        Storyboard.TargetProperty="Matrix"
                        Duration="0:0:10" 
                        PathGeometry="{StaticResource path}"
                        DoesRotateWithTangent="True" />
                </Storyboard>
            </BeginStoryboard>
        </EventTrigger>
    </Canvas.Triggers>
</Canvas>

   
    
    
    
    
    
  








Related examples in the same category

1.Two AnimationsTwo Animations
2.Bouncing BallBouncing Ball
3.Animation along a pathAnimation along a path
4.Animate RadialGradientAnimate RadialGradient
5.Animate RenderTransform AngleAnimate RenderTransform Angle
6.Animate OpacityAnimate Opacity
7.Animation In StyleAnimation In Style
8.Animation without acceleration or decelerationAnimation without acceleration or deceleration
9.Animation with a fast speedAnimation with a fast speed
10.Animation with a slow speedAnimation with a slow speed
11.Animation that accelerates through 50% of its durationAnimation that accelerates through 50% of its duration
12.Animation that decelerates through 50% of its durationAnimation that decelerates through 50% of its duration
13.Animate the brush's RadiusX property.Animate the brush's RadiusX property.
14.Animate Fill.RadiusYAnimate Fill.RadiusY
15.Animate GradientStop and Button controlAnimate GradientStop and Button control
16.Animate EndPointAnimate EndPoint
17.Animate StartPointAnimate StartPoint
18.Animate Ellipse RadiusY, RadiusXAnimate Ellipse RadiusY, RadiusX
19.XAML Only AnimationXAML Only Animation
20.Animation with Discrete Key FramesAnimation with Discrete Key Frames
21.Animation with Mixed Key Frames.xamlAnimation with Mixed Key Frames.xaml
22.Control Animations Through TriggersControl Animations Through Triggers
23.Animate the Color of a Brush with Indirect Property TargetingAnimate the Color of a Brush with Indirect Property Targeting
24.Animate the background colorAnimate the background color
25.Animate Width and Height of a EllipseAnimate Width and Height of a Ellipse
26.Animate Width and Height of a RectangleAnimate Width and Height of a Rectangle
27.Use ColorAnimationUsingKeyFrames to animate the foreground color of a TextBlockUse ColorAnimationUsingKeyFrames to animate the foreground color of a TextBlock
28.Use StringAnimationUsingKeyFrames to animate the text value of a TextBlockUse StringAnimationUsingKeyFrames to animate the text value of a TextBlock
29.Four Sided BounceFour Sided Bounce
30.Discrete Double Key FrameDiscrete Double Key Frame
31.Simple Path AnimationSimple Path Animation
32.Start the animation with Path is loadedStart the animation with Path is loaded
33.Bouncing Ball with ParallelTimelineBouncing Ball with ParallelTimeline
34.Bouncing Ball with DoubleAnimationBouncing Ball with DoubleAnimation
35.KeySpline AnimationKeySpline Animation
36.Ball moves in a constant speedBall moves in a constant speed
37.Ball moves following spline key framesBall moves following spline key frames
38.Repetition countRepetition count
39.Repetition durationRepetition duration
40.Use ColorAnimationUsingKeyFrames to animate GradientStopUse ColorAnimationUsingKeyFrames to animate GradientStop
41.Use StringAnimationUsingKeyFrames to ColorUse StringAnimationUsingKeyFrames to Color
42.Using DiscreteStringKeyFrameUsing DiscreteStringKeyFrame
43.Animate Ball HeightAnimate Ball Height
44.Rotate Button AnimationRotate Button Animation
45.Rotate Button Animation With LayoutRotate Button Animation With Layout
46.A simple, finite animationA simple, finite animation
47.Code Animation Accelerate DecelerateCode Animation Accelerate Decelerate
48.Animation with codeAnimation with code
49.Velocity animationVelocity animation
50.Animation In CodeAnimation In Code
51.A Simple Animation in CodeA Simple Animation in Code
52.Remove Animations with AnimationClockRemove Animations with AnimationClock
53.Remove AnimationsRemove Animations
54.Control the Progress of an AnimationControl the Progress of an Animation
55.Markup for navigation transition animations
56.Opacity AnimationOpacity Animation
57.Width and Height animationWidth and Height animation
58.Timer triggered AnimationTimer triggered Animation
59.Path animation by code, duration, RepeatBehaviorPath animation by code, duration, RepeatBehavior
60.Rolling Ball AnimationRolling Ball Animation
61.Show a Continuous Animation During an Asynchronous ProcessShow a Continuous Animation During an Asynchronous Process
62.Receive Notification When an Animation CompletesReceive Notification When an Animation Completes
63.An animated Ellipse traces the outline of rendered text by using the path geometry of the text.An animated Ellipse traces the outline of rendered text by using the path geometry of the text.