Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
un1cum authored May 9, 2022
1 parent 112d875 commit f013fa4
Show file tree
Hide file tree
Showing 9 changed files with 229 additions and 0 deletions.
Binary file not shown.
Binary file added packages/CircularProgressBar.2.8.0.16/Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions packages/CircularProgressBar.2.8.0.16/readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Circular Progress Bar
Circular ProgressBar is a custom control for WinForm with animation

=====================================================================

USAGE
First, build your application, and then use the toolbox to add the
control to your forms.
If the control was still absent, add it manually from the
'packages' directory in your solution's root path.

KNOWN ISSUE WITH VISUAL STUDIO TOOLBOX
If you couldn't find this control in the toolbox and you failed to
add it from the NuGet package directly, try using the copies of the
library in your project's `Debug` or `Release` directories.

The problem with the toolbox is that it is part of the Visual
Studio and not your project, and as the result, it can't resolve
some dependencies, although they are already part of your project.

In this case, Visual Studio Toolbox needs 'WinFormAnimation.dll'
library next to the 'CircularProgressBar.dll' library to let you
use it. However, you can always write the code manually and bypass
the use of toolbox altogether.
Binary file added packages/WinFormAnimation.1.6.0.4/Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
33 changes: 33 additions & 0 deletions packages/WinFormAnimation.1.6.0.4/readme.txt
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit f013fa4

Please sign in to comment.