Icon WinForm Animation Library [.Net3.5+]

A simple library for animating controls/values in .Net WinForm (.Net 3.5 and later). Key frame (Path) based and fully customizable.

Please note that even though this library designed for WinForm but its usage is not limited to WinForm and can be used in other environments. Only reference of the library is to 'System.Drawing' name space.

WHERE TO FIND

This library is available as a NuGet package at nuget.org.

MAIN CLASSES

For full documentation of the classes and their members, please take a look at our doxygen page at falahati.github.io.

BASIC EXAMPLES

ONE DIMENSIONAL ANIMATION OF A PROPERTY

Following code animates a property named Value of a ProgressBar named pb_progress in 5 seconds from zero to one hundred:

new Animator(new Path(0, 100, 5000))
    .Play(pb_progress, Animator.KnownProperties.Value);
TWO DIMENSIONAL ANIMATION OF A PROPERTY

Following code animates a Form in two paths. First one moves the Form from (0, -100) to (100, 200) and second path waits for 3 seconds and then moved the Form to its initial location in 2 seconds. (this is a Form)

new Animator2D(
        new Path2D(0, 100, -100, 200, 5000).ContinueTo(this.Location.ToFloat2D(), 2000, 3000))
    .Play(this, Animator2D.KnownProperties.Location);
THREE DIMENSIONAL ANIMATION OF A PROPERTY

Following code animates a property named CustomColor of a Control named c_customLabel in 2 seconds and after a delay of 1 second using the AnimationFunctions.CubicEaseIn function and with maximum of 10 frames per second.

new Animator3D(
        new Path3D(Color.Blue.ToFloat3D(), Color.Red.ToFloat3D(), 2000, 1000, AnimationFunctions.CubicEaseIn), 
        FPSLimiterKnownValues.LimitTen)
    .Play(c_customLabel, "CustomColor");
KEYFRAMES

There are extension methods for Path, Path2D, Path3D and their arrays to let you continue the path easily and define the key frames as fast as possible. For example, following code moves a Control named c_control in a rectangular path infinitely:

new Animator2D(
    new Path2D(new Float2D(100, 100), new Float2D(200, 100), 1000)
        .ContinueTo(new Float2D(200, 200), 1000)
        .ContinueTo(new Float2D(100, 200), 1000)
        .ContinueTo(new Float2D(100, 100), 1000))
{
    Repeat = true
}.Play(c_control, Animator2D.KnownProperties.Location);
CALLBACKS

It is possible to define a custom callback as frame handler as well as defining a call back to handle the end of the animation. Following example will call a method named CustomSetMethod for setting new values and handle the frames, and starts the animation in reverse path after its end for one more time:

var animator = new Animator(new Path(100, 200, 1000).ContinueTo(400, 500));
animator.Play(new SafeInvoker<float>(CustomSetMethod), new SafeInvoker(() =>
{
    animator.Paths = animator.Paths.Select(path => path.Reverse()).Reverse().ToArray();
    animator.Play(new SafeInvoker<float>(CustomSetMethod));
}));

DEMO PROJECT

Check the 'WinFormAnimation.Samples' project for simple usage examples. Screenshot

LICENSE

The MIT License (MIT)

Copyright (c) 2016 Soroush Falahati

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.