This commit is contained in:
U-METAL103\103
2024-01-26 13:06:12 -06:00
parent 3dc7277873
commit 676829887d
43 changed files with 0 additions and 0 deletions
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.
Binary file not shown.
+33
View File
@@ -0,0 +1,33 @@
WinForm Animation Library
A simple library for animating controls/values in .Net
WinForm (.Net 3.5 and later).
=========================================================================
USAGE
Use the three 'Animator', 'Animator2D' and 'Animator3D' classes to
start an animation.
SAMPLE ON ONE DIMENSIONAL ANIMATION OF A PROPERTY
new Animator(new Path(0, 100, 5000))
.Play(pb_progress, Animator.KnownProperties.Value);
SAMPLE ON TWO DIMENSIONAL ANIMATION OF A PROPERTY
new Animator2D(
new Path2D(0, 100, -100, 200, 5000)
.ContinueTo(this.Location.ToFloat2D(), 2000, 3000))
.Play(this, Animator2D.KnownProperties.Location);
SAMPLE ON THREE DIMENSIONAL ANIMATION OF A PROPERTY
new Animator3D(
new Path3D(
Color.Blue.ToFloat3D(),
Color.Red.ToFloat3D(),
2000, 1000,
AnimationFunctions.CubicEaseIn),
FPSLimiterKnownValues.LimitTen)
.Play(c_customLabel, "CustomColor");
MORE SAMPLES:
Check the Project's Github page at:
https://github.com/falahati/WinFormAnimation