Skip to content

herbertagosto/ProgressBar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ProgressBar

Simplify progress bar implementation on winforms

Sample

Getting Started

private void button1_Click(object sender, EventArgs e)
{
	ProgressBar.UI.Start(this);	// start progress bar
	// any process..
	ProgressBar.UI.Stop();		// stop progress bar
}
# API:
ProgressBar.UI.Message = "Progress message";
ProgressBar.UI.Interval = 100;		// set progress speed (milliseconds)
ProgressBar.UI.Pause();			// pause progress
ProgressBar.UI.Play();			// continue progress
ProgressBar.UI.Hide();			// Hides progress bar
ProgressBar.UI.Show()			// Show progress bar

Prerequisities

.NET Framework 4

Installing

https://www.nuget.org/packages/ProgressBar/

Built With

visual studio 2013

License

see LICENSE file

About

Simplify progress bar implementation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages