-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
229 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+25.3 KB
packages/CircularProgressBar.2.8.0.16/CircularProgressBar.2.8.0.16.nupkg
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+17 KB
packages/CircularProgressBar.2.8.0.16/lib/net40/CircularProgressBar.dll
Binary file not shown.
172 changes: 172 additions & 0 deletions
172
packages/CircularProgressBar.2.8.0.16/lib/net40/CircularProgressBar.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |